From 2b1ab7932c3307d30a8b317cfeb80177669861bd Mon Sep 17 00:00:00 2001 From: Avram Lubkin Date: Thu, 4 Jul 2024 11:31:56 -0400 Subject: [PATCH] Update options for codecov-action --- .github/workflows/tests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5dec13a..3531586 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -61,7 +61,7 @@ jobs: TOXPYTHON: python${{ matrix.toxpython || matrix.python-version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 @@ -85,5 +85,9 @@ jobs: run: tox -- --verbose - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + with: + verbose: true + fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} if: ${{ matrix.toxenv == 'coverage' }}