From 97f87b7d0e6f999feeacf646eed20a8c1aa2a2bf Mon Sep 17 00:00:00 2001 From: Robert Haimerl Date: Wed, 31 Jan 2024 11:07:39 +0100 Subject: [PATCH] debug: upload test report as artifact --- .github/workflows/codecov.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index d7c5b3b4f..21c09544a 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -34,4 +34,10 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: ./code-coverage-report/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml fail_ci_if_error: true - flags: unittests \ No newline at end of file + flags: unittests + - name: Upload plugin test report + if: always() + uses: actions/upload-artifact@v4 + with: + name: plugin-test-report + path: ./codyze-plugins/build/reports/tests/test/index.html \ No newline at end of file