Skip to content

Remove codecov and fix readthedocs. #46

Remove codecov and fix readthedocs.

Remove codecov and fix readthedocs. #46

Workflow file for this run

---
name: Test
on:
push:
branches: ["master"]
pull_request:
workflow_dispatch:
jobs:
test:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: "actions/checkout@v4"
- uses: "astral-sh/setup-uv@v5"
- name: "Install tox"
run: "uv tool install tox --with tox-uv,tox-gh-actions,coverage"
- name: "Run tox targets for ${{ matrix.python-version }}"
run: "tox run"