Skip to content

Adds documentation + tutorials updated #4

Adds documentation + tutorials updated

Adds documentation + tutorials updated #4

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6.0.2
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: ${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: Install the project with `dev`
run: uv sync --extra dev
- name: Run tests
run: uv run pytest tests