Skip to content

Add pytest coverage and CI pipeline #2

Add pytest coverage and CI pipeline

Add pytest coverage and CI pipeline #2

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v3
with:
python-version: "3.13"
- name: Install dependencies
run: uv sync --extra dev
- name: Run tests
run: uv run --extra dev pytest