From e622e689c16e64d295b0864557d87a7b560a3b48 Mon Sep 17 00:00:00 2001 From: simlecode <69969590+simlecode@users.noreply.github.com> Date: Thu, 11 Apr 2024 16:24:50 +0800 Subject: [PATCH] chore: skip codecov error --- .github/workflows/common_go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/common_go.yml b/.github/workflows/common_go.yml index e720fa1146..5bc5a8e8dc 100644 --- a/.github/workflows/common_go.yml +++ b/.github/workflows/common_go.yml @@ -70,13 +70,13 @@ jobs: export GOLOG_LOG_LEVEL=${{ inputs.log_level }} go test -coverpkg=./... -race -coverprofile=coverage.txt -covermode=atomic ./... -v --timeout ${{ inputs.test_timeout }}m + # https://github.com/codecov/codecov-action/issues/557#issuecomment-1216749652 - name: Upload uses: codecov/codecov-action@v3 with: - # https://github.com/codecov/codecov-action/issues/557#issuecomment-1216749652 token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.txt flags: unittests name: ${{steps.vars.outputs.repo_name}} - fail_ci_if_error: true + fail_ci_if_error: false verbose: true