Skip to content

Commit

Permalink
Replace AppVeyor testing with GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Oct 19, 2024
1 parent 45ee662 commit 4280816
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4280816

Please sign in to comment.