Skip to content

Commit

Permalink
Merge pull request #231 from ostefano/win
Browse files Browse the repository at this point in the history
Run latest Python tests on Windows
  • Loading branch information
adulau committed Apr 3, 2024
2 parents 5ae71b7 + 5967028 commit 2330398
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/python-ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,20 @@ on: [push, pull_request]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
- os: windows-latest
python-version: '3.8'
- os: windows-latest
python-version: '3.9'
- os: windows-latest
python-version: '3.10'
- os: windows-latest
python-version: '3.11'

name: Python ${{ matrix.python-version }} Build
steps:
Expand Down

0 comments on commit 2330398

Please sign in to comment.