From 42963f98b48c8571f809cd27039cedfbcfe66cb1 Mon Sep 17 00:00:00 2001 From: Cowork Supervisor Date: Sun, 12 Jul 2026 12:47:14 -0400 Subject: [PATCH] ci: test on windows + python 3.13 (#40) Closes #40 Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2979dc..e5ee857 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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