Skip to content

Migrate to uv (package & project management) and ruff (formatting + linting) #89

Migrate to uv (package & project management) and ruff (formatting + linting)

Migrate to uv (package & project management) and ruff (formatting + linting) #89

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
version: "latest"
- run: uv sync
- run: uv run ruff format --diff
- run: uv run ruff check
- run: uv run mypy src tests
- run: uv run pytest