Skip to content

fix: 46, other minor fixes #119

fix: 46, other minor fixes

fix: 46, other minor fixes #119

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: uv sync --all-extras
- name: Run pytest
run: uv run pytest