Update Prethink context #207
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: Run quality checks | |
| on: | |
| workflow_call: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: 'checks ${{ github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install dependencies | |
| run: | | |
| uv sync --all-extras --group ci --python 3.12 | |
| - name: Check sentence casing | |
| run: | | |
| source .venv/bin/activate | |
| poe check-sentence-casing | |
| - name: Check options | |
| run: | | |
| source .venv/bin/activate | |
| poe check-options |