From c29395e722708f2586368c7ba38ceacca17cde00 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Mon, 15 Mar 2021 17:20:27 -0400 Subject: [PATCH] Capture Test Results in PR Workflow --- .github/workflows/pr-build-workflow.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/pr-build-workflow.yml b/.github/workflows/pr-build-workflow.yml index d2af935e..b55f615f 100644 --- a/.github/workflows/pr-build-workflow.yml +++ b/.github/workflows/pr-build-workflow.yml @@ -28,3 +28,10 @@ jobs: uses: burrunan/gradle-cache-action@v1 with: arguments: check + + - name: Capture Test Results + uses: actions/upload-artifact@v2 + with: + name: test-results + path: */build/reports/tests/**/*.* + retention-days: 3