Switch pre-commit alignment hook from auto-fix to verify-only #17
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: test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| check: | |
| if: github.repository == 'MichaelYochpaz/ai-workspace-template' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - uses: astral-sh/setup-uv@v6 | |
| - run: uv sync | |
| - run: uv run pre-commit run --all-files | |
| - run: uv run python .ai-workspace/scripts/session-start.py |