Skip to content

Commit

Permalink
Fix matrix definition to use longer exclude list
Browse files Browse the repository at this point in the history
...instead of trying to be clever with a concise include list.
  • Loading branch information
melissalinkert committed Mar 5, 2024
1 parent 69afe37 commit 1b411a0
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,32 @@ jobs:
matrix:
java: [8, 11, 17, 21]
os: [ubuntu-latest, windows-latest, macos-latest]
include:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
- java: 8
python-version: '3.8'
- java: 11
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: '3.9'
- java: 8
python-version: '3.10'
- java: 8
python-version: '3.11'
- java: 8
python-version: '3.12'
- java: 17
python-version: '3.9'
- java: 17
python-version: '3.10'
- java: 17
python-version: '3.8'
python-version: '3.11'
- java: 17
python-version: '3.12'
- java: 21
python-version: '3.9'
- java: 21
python-version: '3.10'
- java: 21
python-version: '3.11'
- java: 21
python-version: '3.8'
python-version: '3.12'
runs-on: ${{ matrix.os }}
env:
maven_commands: install
Expand Down

0 comments on commit 1b411a0

Please sign in to comment.