From 72e36c9d63f3e21591a50b641de18e6cf3ea1cc6 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Wed, 2 Feb 2022 19:34:36 -0500 Subject: [PATCH] storing code coverage reports --- .github/workflows/maven.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index cfdb99b..daba774 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -35,8 +35,8 @@ jobs: if: always() # always run even if the previous step fails with: report_paths: '**/surefire-reports/TEST-*.xml' - - name: Publish Test Report Action - uses: mikepenz/action-junit-report@v2 - if: always() # always run even if the previous step fails + - name: Archive code coverage results + uses: actions/upload-artifact@v2 with: - report_paths: '**/surefire-reports/TEST-*.xml' + name: surefire-reports + path: '**/surefire-reports/TEST-*.xml'