Skip to content

Commit

Permalink
Exclude unsupported Python versions from macos-14
Browse files Browse the repository at this point in the history
  • Loading branch information
frederickjansen committed May 8, 2024
1 parent 198f478 commit f254c6b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/lint-test-cover-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
xcl: ['omit', 'install']
os: [ ubuntu-latest, macos-13, macos-14, windows-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
exclude:
- python-version: '3.8'
os: macos-14
- python-version: '3.9'
os: macos-14
- python-version: '3.10'
os: macos-14
xcl: [ 'omit', 'install' ]
name: "Python ${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit f254c6b

Please sign in to comment.