Bump actions/upload-pages-artifact from 4 to 5 #44
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: build | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_call: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| run: python -m pip install uv | |
| - name: Sync locked dependencies | |
| run: uv sync --locked | |
| - name: Check ruff format | |
| run: uv run ruff format --check | |
| - name: Check with ruff | |
| run: uv run ruff check | |
| - name: Run pyright | |
| run: uv run pyright | |
| - name: Test with pytest | |
| run: uv run pytest |