Skip to content

[#9] feat: add top-level API, README docs, and integration tests (#14) #24

[#9] feat: add top-level API, README docs, and integration tests (#14)

[#9] feat: add top-level API, README docs, and integration tests (#14) #24

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras
- name: Run ruff check
run: uv run ruff check src tests
- name: Run ruff format check
run: uv run ruff format --check src tests
- name: Run pyright
run: uv run pyright
- name: Run tests
run: uv run python -m unittest discover tests/ -v