Skip to content

Minor doc cleanup. #305

Minor doc cleanup.

Minor doc cleanup. #305

Workflow file for this run

name: Unit Tests in Python 3.10, 3.11, 3.12, 3.13, 3.14
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: |
uv sync --extra dev
- name: Run tests
run: |
make RUN='uv run' tests
make RUN='uv run' tests-compact