Skip to content

Commit

Permalink
TST: extend GHA test matrix to current Python versions
Browse files Browse the repository at this point in the history
3.6 is not available on the runners anymore.

There is only limited Python support on macos runners
  • Loading branch information
tacaswell committed May 13, 2024
1 parent e9b36e1 commit fdb49d6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9"]
exclude:
- os: macos-latest
python-version: "3.6"
os: [ubuntu-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: macos-12 # This runner is on Intel chips.
python-version: 3.9
- os: macos-14 # This runner is on M1 (arm64) chips.
python-version: '3.12'
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down

0 comments on commit fdb49d6

Please sign in to comment.