From e4af425815e2c3043c25f70669e866064d6e508a Mon Sep 17 00:00:00 2001 From: Matt Wang Date: Tue, 9 Apr 2024 21:15:30 +0800 Subject: [PATCH] fix(ci): update codecov action version --- .github/workflows/ci.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 451cd6785..5fe1d8481 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -63,4 +63,10 @@ jobs: pytest -n 2 --cov=. --cov-report=term-missing --cov-report=xml - name: Run Codecov action - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + with: + fail_ci_if_error: false + files: ./src/coverage.xml + verbose: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}