From 3918c37f211ca1dd89269c3c9fa0bc07c4fbb857 Mon Sep 17 00:00:00 2001 From: Dan Rammer Date: Tue, 8 Nov 2022 16:11:59 -0600 Subject: [PATCH 1/2] disable codecov Signed-off-by: Dan Rammer --- .github/workflows/master.yml | 2 +- .github/workflows/pull_request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 32095838..fdfb76d5 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 fbc7b27c..128cee25 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -21,7 +21,7 @@ jobs: 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: From f0b9efffa507c606af9f402fa7944040473df76c Mon Sep 17 00:00:00 2001 From: Dan Rammer Date: Tue, 8 Nov 2022 16:18:31 -0600 Subject: [PATCH 2/2] bump codecov action verison Signed-off-by: Dan Rammer --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 128cee25..88d81f62 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -17,7 +17,7 @@ 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