Skip to content

Commit 467ea39

Browse files
committed
java: Various CI improvements
This bulk update includes * Use Eclipse Temurin instead of Azul Zulu * Set fail-fast: true on matrix strategies to reduce CI time * Use the junit-jupiter aggregator module instead of junit-jupiter-engine * Use single quotes around values in yaml for consistency
1 parent b38edd0 commit 467ea39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-java.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ jobs:
2222
test-java:
2323
runs-on: ${{ matrix.os }}
2424
strategy:
25-
fail-fast: false
25+
fail-fast: true
2626
matrix:
2727
os:
2828
- ubuntu-latest
29-
java: ["17", "21"]
29+
java: ['17', '21']
3030

3131
steps:
3232
- uses: actions/checkout@v5
3333

3434
- uses: actions/setup-java@v5
3535
with:
36-
distribution: "zulu"
36+
distribution: 'temurin'
3737
java-version: ${{ matrix.java }}
38-
cache: "maven"
38+
cache: 'maven'
3939

4040
- run: mvn verify
4141
working-directory: java

0 commit comments

Comments
 (0)