From ab2318746d40e78ecb7577391059497e07c2d5d8 Mon Sep 17 00:00:00 2001 From: Dan Rammer Date: Mon, 14 Nov 2022 10:47:51 -0600 Subject: [PATCH] Ignore codecov upload failures (#144) * disable codecov Signed-off-by: Dan Rammer * bump codecov action verison Signed-off-by: Dan Rammer Signed-off-by: Dan Rammer --- .github/workflows/master.yml | 2 +- .github/workflows/pull_request.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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: