diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19a4d1a..398a99f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -215,12 +215,23 @@ jobs: if: always() && github.actor != 'dependabot[bot]' with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./coverage.xml,./junit.xml + files: ./coverage.xml flags: unittests name: codecov-devrelay fail_ci_if_error: true verbose: true + - name: Upload test results to Codecov + uses: codecov/test-results-action@v1 + if: always() && github.actor != 'dependabot[bot]' + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: ./junit.xml + flags: unittests + name: test-results-devrelay + fail_ci_if_error: true + verbose: true + - name: Publish test results uses: dorny/test-reporter@d61b558e8df85cb60d09ca3e5b09653b4477cea7 # v1 if: always() && github.actor != 'dependabot[bot]'