diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 4f68f9391..259c81288 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -27,13 +27,11 @@ jobs: run: go mod vendor - name: Report coverage if: ${{ matrix.go == '1.21' }} - uses: codecov/codecov-action@v4.4.1 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + uses: codecov/codecov-action@v4 with: files: ./cover.out flags: unittests - fail_ci_if_error: true + fail_ci_if_error: false verbose: true build-test-frontend: @@ -51,11 +49,9 @@ jobs: - name: build and test run: make frontend && git diff --exit-code - name: Report coverage - uses: codecov/codecov-action@v4.4.1 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + uses: codecov/codecov-action@v4 with: files: ./web/coverage/cobertura-coverage.xml flags: uitests - fail_ci_if_error: true + fail_ci_if_error: false verbose: true