From 647987dfa6711a929d035bc5acd4bd5d7706c59c Mon Sep 17 00:00:00 2001 From: Chris Lenk Date: Mon, 15 Apr 2024 17:11:28 -0400 Subject: [PATCH] Prevent codecov workflow errors --- .github/workflows/python-ci-tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-ci-tests.yml b/.github/workflows/python-ci-tests.yml index 6ca27d5f..47f860e1 100644 --- a/.github/workflows/python-ci-tests.yml +++ b/.github/workflows/python-ci-tests.yml @@ -27,7 +27,8 @@ jobs: run: | tox - name: Upload coverage information to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v4.2.0 with: - fail_ci_if_error: true # optional (default = false) + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: false # optional (default = false) verbose: true # optional (default = false)