Skip to content

Commit 440b9aa

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 2441e73 commit 440b9aa

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/test-java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
16-
fail-fast: false
16+
fail-fast: true
1717
matrix:
1818
os:
1919
- ubuntu-latest

java/pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,7 @@
7676
</dependency>
7777
<dependency>
7878
<groupId>org.junit.jupiter</groupId>
79-
<artifactId>junit-jupiter-engine</artifactId>
80-
<scope>test</scope>
81-
</dependency>
82-
<dependency>
83-
<groupId>org.junit.jupiter</groupId>
84-
<artifactId>junit-jupiter-params</artifactId>
79+
<artifactId>junit-jupiter</artifactId>
8580
<scope>test</scope>
8681
</dependency>
8782
</dependencies>

0 commit comments

Comments
 (0)