Skip to content

Commit 3af81ed

Browse files
Update github ci workflow
1 parent 3455e14 commit 3af81ed

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

.github/workflows/maven.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,21 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
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
15+
- uses: actions/checkout@v4
16+
17+
- name: Set up JDK 25
18+
uses: actions/setup-java@v4
19+
with:
20+
java-version: '25'
21+
distribution: 'temurin'
22+
cache: maven
23+
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+
with:
31+
name: test-reports
32+
path: target/surefire-reports/

0 commit comments

Comments
 (0)