We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3455e14 commit 3af81edCopy full SHA for 3af81ed
.github/workflows/maven.yml
@@ -12,12 +12,21 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v4
16
- - name: Set up JDK 25
17
- uses: actions/setup-java@v4
18
- with:
19
- java-version: '25'
20
- distribution: 'temurin'
21
- cache: maven
22
- - name: Build with Maven
23
- run: mvn -B package -Pdev --file pom.xml
+ - uses: actions/checkout@v4
+
+ - name: Set up JDK 25
+ uses: actions/setup-java@v4
+ with:
+ java-version: '25'
+ distribution: 'temurin'
+ cache: maven
24
+ - name: Build with Maven
25
+ run: mvn -B package -Pdev --file pom.xml
26
27
+ - name: Upload Test Results
28
+ if: always()
29
+ uses: actions/upload-artifact@v4
30
31
+ name: test-reports
32
+ path: target/surefire-reports/
0 commit comments