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' }}