From 9470f72eae502e45f1f820ed645c87aba002826b Mon Sep 17 00:00:00 2001 From: Philip Loche Date: Thu, 2 May 2024 09:14:01 +0200 Subject: [PATCH] Use new version of codecov upload action --- .github/workflows/tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3b1376047..c75a90b2a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,6 +27,11 @@ jobs: - name: run Python tests run: tox -e tests - - uses: codecov/codecov-action@v3 + + - name: upload to codecov.io + uses: codecov/codecov-action@v4 with: + fail_ci_if_error: true files: ./tests/coverage.xml + token: ${{ secrets.CODECOV_TOKEN }} + verbose: true