Skip to content

Fixes docs build

Fixes docs build #76

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.13", "3.12", "3.11", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Run linter
run: uv run ruff check .
- name: Run format
run: uv run ruff format . --check
- name: Run type check
run: uv run mypy .
- name: Run tests
run: uv run pytest