Uh oh!
There was an error while loading. Please reload this page.
chore(deps-dev): Update pytest-cov requirement from >=6.0.0 to >=7.1.0 #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Todo Checker | |
| on: | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: "31 1,12 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| todo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Scan TODOs | |
| run: | | |
| if grep -RIn --exclude-dir=.git --exclude-dir=.venv "TODO\|FIXME" . | head -50; then | |
| echo "Found TODO/FIXME markers (informational)" | |
| else | |
| echo "No TODO/FIXME markers" | |
| fi |