We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed01082 commit cb936fcCopy full SHA for cb936fc
1 file changed
.github/workflows/ci.yml
@@ -9,28 +9,25 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
- strategy:
13
- matrix:
14
- java: [ 21 ]
15
-
+
16
steps:
17
- uses: actions/checkout@v4
18
19
- - name: Set up JDK ${{ matrix.java }}
+ - name: Set up JDK 25
20
uses: actions/setup-java@v4
21
with:
22
- java-version: ${{ matrix.java }}
+ java-version: 25
23
distribution: 'temurin'
24
cache: maven
25
26
- name: Build with Maven
27
run: mvn clean install -B -Dgpg.skip=true -Djacoco.skip=true
28
29
- name: Upload Test Results
30
if: always()
31
uses: actions/upload-artifact@v4
32
33
- name: test-results-java-${{ matrix.java }}
+ name: test-results
34
path: |
35
target/surefire-reports/
36
target/it/*/build.log
0 commit comments