We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd46d3c commit 3834defCopy full SHA for 3834def
.github/workflows/maven.yml
@@ -19,6 +19,10 @@ jobs:
19
20
runs-on: ubuntu-latest
21
22
+ permissions:
23
+ checks: write
24
+ pull-requests: write
25
+
26
steps:
27
- uses: actions/checkout@v4
28
- name: Set up JDK 17
@@ -29,6 +33,12 @@ jobs:
29
33
cache: maven
30
34
- name: Build with Maven
31
35
run: mvn -B package --file pom.xml
36
+ - name: Publish Test Results
37
+ uses: EnricoMi/publish-unit-test-result-action@v2
38
+ if: always()
39
+ with:
40
+ files: |
41
+ target/surefire-reports/*.xml
32
42
43
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
44
#- name: Update dependency graph
0 commit comments