Fix ordering of quiz and regular pages #666
Workflow file for this run
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: MyPy | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Setup Graphviz | |
| uses: ts-graphviz/setup-graphviz@v2 | |
| - name: Install dependencies | |
| run: sudo apt install libcairo2-dev pkg-config python3-dev ffmpeg | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Update lockfile | |
| run: uv lock | |
| - name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - name: Run mypy | |
| run: uv run mypy adt-press.py |