Skip to content

Update Step 4 intro to reference Step 3 finalized findings #1369

Update Step 4 intro to reference Step 3 finalized findings

Update Step 4 intro to reference Step 3 finalized findings #1369

Workflow file for this run

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