diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 3209583876..fdfb76d518 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -62,7 +62,7 @@ jobs: with: file: coverage.txt flags: unittests - fail_ci_if_error: true + fail_ci_if_error: false - uses: actions/setup-go@v2 with: go-version: '1.18' diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index fbc7b27ccf..88d81f6202 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -17,11 +17,11 @@ jobs: - name: Unit Tests run: make mod_download && make test_unit_codecov - name: Push CodeCov - uses: codecov/codecov-action@v1.5.2 + uses: codecov/codecov-action@v3.1.1 with: file: coverage.txt flags: unittests - fail_ci_if_error: true + fail_ci_if_error: false - name: Bench tests run: make install && make test_benchmark lint: