Skip to content

Develop

Develop #93

Workflow file for this run

name: Test
on:
pull_request:
paths:
- 'src/**'
- 'tests/**'
- 'scripts/download_fixtures.py'
- '.github/workflows/test.yml'
push:
branches: [main]
paths:
- 'src/**'
- 'tests/**'
- 'scripts/download_fixtures.py'
- '.github/workflows/test.yml'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Download fixtures
run: uv run python scripts/download_fixtures.py
- name: Run tests
run: uv run pytest