Skip to content

Use uv for dependencies and packaging (#449) #313

Use uv for dependencies and packaging (#449)

Use uv for dependencies and packaging (#449) #313

Workflow file for this run

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