Skip to content

.

. #107

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
pre-commit:
name: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: pre-commit/[email protected]
test:
needs: pre-commit
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v5
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
- name: Install Packages
run: uv sync --frozen
- name: Test with python ${{ matrix.python-version }}
run: uv run --frozen pytest
docs:
needs: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: '3.12'
activate-environment: true
- name: Install Packages
run: uv sync --frozen
- name: Build docs
run: uv run --frozen sphinx-build docs build_docs --color -b html -E -W -n --keep-going