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 ee4bfdf commit 1ced898Copy full SHA for 1ced898
.github/workflows/maven-verify.yml
@@ -112,3 +112,11 @@ jobs:
112
# [2]: https://docs.github.com/en/actions/sharing-automations/reusing-workflows#limitations
113
name: Run maven verify
114
run: mvn --batch-mode --update-snapshots --fail-fast ${{ inputs.mvn-options }} verify
115
+
116
+ - # https://github.com/actions/upload-artifact
117
+ name: Upload surefire reports
118
+ if: failure()
119
+ uses: actions/upload-artifact@v5
120
+ with:
121
+ name: "surefire-reports-${{ inputs.runner }}"
122
+ path: target/surefire-reports/**
0 commit comments