Skip to content

Address some clarity issues in the docs #8

Address some clarity issues in the docs

Address some clarity issues in the docs #8

Workflow file for this run

name: tests
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
# Keep this in sync with tox.ini
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
uses: astral-sh/setup-uv@v6
- name: Run tests
run: uvx --with tox-uv tox