From fb2a87144ddad0d4467319b580dab9842212d513 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Sat, 1 Apr 2023 13:25:23 +0200 Subject: [PATCH] Use Codecov token and proceed when tests fail --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce011378..7da8df91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,6 +77,9 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 + if: ${{ success() || failure() }} + with: + token: ${{ secrets.CODECOV_TOKEN }} - name: Send coverage to CodeClimate uses: paambaati/codeclimate-action@v3.2.0 continue-on-error: true