Skip to content

Bump actions/upload-pages-artifact from 4 to 5 #44

Bump actions/upload-pages-artifact from 4 to 5

Bump actions/upload-pages-artifact from 4 to 5 #44

Workflow file for this run

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