ci: test on windows + python 3.13 (#40) #46

Merged
the_og merged 3 commits from ci/40-test-matrix into main 2026-07-12 13:06:35 -04:00
Showing only changes of commit 42963f98b4 - Show all commits
+4 -3
View File
@@ -29,12 +29,13 @@ jobs:
run: ruff format --check .
test:
runs-on: ubuntu-latest
name: Tests (py${{ matrix.python }})
runs-on: ${{ matrix.os }}
name: Tests (py${{ matrix.python }} / ${{ matrix.os }})
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.12"]
os: [ubuntu-latest, windows-latest]
python: ["3.10", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4