Skip to content

Commit

Permalink
Merge pull request csu-hmc#374 from moorepants/reduce-ci-matrix
Browse files Browse the repository at this point in the history
Reduce combination of os and python versions tested in CI.
  • Loading branch information
moorepants authored Feb 22, 2025
2 parents a9671bd + 07d3246 commit 0c107e4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,27 @@ jobs:
# macos-13 is the last intel based runner
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
# test all python versions on ubuntu, but only latest two on mac and
# windows
exclude:
- os: macos-13
python-version: '3.9'
- os: macos-13
python-version: '3.10'
- os: macos-13
python-version: '3.11'
- os: macos-latest
python-version: '3.9'
- os: macos-latest
python-version: '3.10'
- os: macos-latest
python-version: '3.11'
- os: windows-latest
python-version: '3.9'
- os: windows-latest
python-version: '3.10'
- os: windows-latest
python-version: '3.11'
defaults:
run:
shell: bash -el {0}
Expand Down

0 comments on commit 0c107e4

Please sign in to comment.