diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 3a87eab950..d19c1f910e 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -120,6 +120,12 @@ jobs: with: flags: unit token: ${{ secrets.CODECOV_TOKEN }} + - if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 + with: + flags: unit + file: unittest.xml + token: ${{ secrets.CODECOV_TOKEN }} test-integration: runs-on: ubuntu-latest timeout-minutes: 30 @@ -138,6 +144,12 @@ jobs: with: flags: integration token: ${{ secrets.CODECOV_TOKEN }} + - if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 + with: + flags: integration + file: unittest.xml + token: ${{ secrets.CODECOV_TOKEN }} test-e2e: name: test-e2e (${{ matrix.job.name }}) runs-on: ubuntu-latest @@ -190,6 +202,12 @@ jobs: with: flags: e2e token: ${{ secrets.CODECOV_TOKEN }} + - if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 + with: + flags: e2e + file: unittest.xml + token: ${{ secrets.CODECOV_TOKEN }} ci-core-mark: needs: - lint