diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 3baf5a81..e5b59004 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -53,16 +53,14 @@ jobs: if: ${{ !cancelled() }} uses: codecov/test-results-action@v1 with: - # Fail if error if not on PR, or if on PR and token is given - fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }} + fail_ci_if_error: false file: ./junit.xml token: ${{ secrets.CODECOV_TOKEN }} - name: Upload coverage report uses: codecov/codecov-action@v5 with: - # Fail if error if not on PR, or if on PR and token is given - fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }} + fail_ci_if_error: false files: ./cobertura.xml plugins: noop disable_search: true