Fix ruff F841 + format on P1 epic test files #13
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - name: Install dev dependencies | |
| run: pip install -e ".[dev]" | |
| - name: ruff check | |
| run: ruff check . | |
| - name: ruff format --check | |
| run: ruff format --check . | |
| - name: shellcheck | |
| run: shellcheck pipeline/hook.sh scripts/*.sh | |
| - name: pytest | |
| run: pytest -q | |
| - name: install ast-grep | |
| run: pip install ast-grep-cli | |
| - name: bully dogfood | |
| run: bash scripts/dogfood.sh |