Skip to content

Add CI pipeline for publishing docs #10

Add CI pipeline for publishing docs

Add CI pipeline for publishing docs #10

Workflow file for this run

name: Run tests
on: [push,workflow_dispatch]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: |
3.10
3.11
3.12
3.13
3.14
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
- name: Install tox
shell: bash -el {0}
run: uv tool install tox --with tox-uv
- name: Test with tox
shell: bash -el {0}
run: tox run-parallel