Skip to content

Commit 1cee5c4

Browse files
committed
Capture Test Results in PR Builds
1 parent 1b9a945 commit 1cee5c4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/pr-build-workflow.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,11 @@ jobs:
2323
GRADLE_ENTERPRISE_URL: https://ge.spring.io/
2424
with:
2525
arguments: check api
26+
27+
- name: Capture Test Results
28+
if: failure()
29+
uses: actions/upload-artifact@v2
30+
with:
31+
name: test-results
32+
path: '*/build/reports/tests/**/*.*'
33+
retention-days: 3

0 commit comments

Comments
 (0)