Skip to content

Migrate to uv

Migrate to uv #274

Workflow file for this run

name: Python tests
on: [ push, pull_request ]
jobs:
run-tests:
name: "Run tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v5
- name: Install uv and set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --locked --dev
- name: Test with pytest
run: uv run pytest tests