Update Step 4 intro to reference Step 3 finalized findings #1369
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: Lint | |
| on: push | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| env: | |
| SHELLCHECK_OPTS: '--exclude=SC1090,SC1091,SC2039,SC3010,SC3060,SC3028' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Display shellcheck version | |
| run: shellcheck --version | |
| - name: shellcheck | |
| run: | | |
| shellcheck -- **/*.sh | |
| find bin/ -type f ! -name '*.md' -exec shellcheck {} + | |
| find xdg-config/git/hooks/ -type f -exec shellcheck {} + | |
| shellcheck --exclude SC2148 .bash_profile .bashrc | |
| python-doctest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: doctest | |
| run: | | |
| for f in claude/hooks/*.py; do | |
| echo "Testing $f" | |
| python3 -m doctest "$f" | |
| done |