Replace AppVeyor testing with GH Actions

This commit is contained in:
grossmj 2024-10-19 16:07:53 +10:00
parent 45ee662c56
commit 42808161bf
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD

View File

@ -13,10 +13,15 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-22.04 runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] 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: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4