Skip to content

Commit

Permalink
Capture Test Results in PR Builds (spring-projects#1735)
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell authored Mar 16, 2021
1 parent 1b9a945 commit 73d853b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pr-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,11 @@ jobs:
GRADLE_ENTERPRISE_URL: https://ge.spring.io/
with:
arguments: check api

- name: Capture Test Results
if: failure()
uses: actions/upload-artifact@v2
with:
name: test-results
path: '*/build/reports/tests/**/*.*'
retention-days: 3

0 comments on commit 73d853b

Please sign in to comment.