Skip to content

fix: correct hook count and add dry-run/symlink warnings to SETUP.md #7

fix: correct hook count and add dry-run/symlink warnings to SETUP.md

fix: correct hook count and add dry-run/symlink warnings to SETUP.md #7

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Run shellcheck on all shell scripts
run: |
shellcheck -x hooks/*.sh scripts/*.sh setup.sh
python-syntax:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Check Python syntax
run: |
python -m py_compile bench/config.py
python -m py_compile bench/runner.py
python -m py_compile bench/compare.py