We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f69c40 commit 9ea57c3Copy full SHA for 9ea57c3
1 file changed
.github/workflows/ci.yml
@@ -9,18 +9,15 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
- strategy:
13
- matrix:
14
- java: [ 17, 21, 25 ]
15
16
steps:
17
- name: Checkout code
18
uses: actions/checkout@v4
19
20
- - name: Set up JDK ${{ matrix.java }}
+ - name: Set up JDK 25
21
uses: actions/setup-java@v4
22
with:
23
- java-version: ${{ matrix.java }}
+ java-version: 25
24
distribution: 'temurin'
25
cache: maven
26
@@ -31,7 +28,7 @@ jobs:
31
28
uses: dorny/test-reporter@v1
32
29
if: success() || failure()
33
30
34
- name: Maven Tests - Java ${{ matrix.java }}
+ name: Maven Tests
35
path: '**/surefire-reports/TEST-*.xml'
36
reporter: java-junit
37
fail-on-empty: false
0 commit comments