From 42808161bfd511144625a48793b6b8ff9628bb7e Mon Sep 17 00:00:00 2001 From: grossmj Date: Sat, 19 Oct 2024 16:07:53 +1000 Subject: [PATCH] Replace AppVeyor testing with GH Actions --- .github/workflows/testing.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 80d514ca..2795e9c0 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -13,10 +13,15 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ${{ matrix.os }} + strategy: matrix: + os: [ubuntu-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + exclude: + - os: windows-latest # only test with Python 3.10 on Windows + python-version: ["3.8", "3.9", "3.11", "3.12"] steps: - uses: actions/checkout@v4