From c62eb1103578d03aa3a35cb72985c2a9aed9a799 Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Tue, 1 Nov 2022 10:08:48 -0700 Subject: [PATCH] update coverage CI action - added CODECOV_TOKEN to the repo secrets - use token in workflow - upgrade action from v2 to v3 --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b59701f7..2d487625 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,8 +57,9 @@ jobs: MPLBACKEND: agg - name: Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: + token: ${{ secrets.CODECOV_TOKEN }} name: codecov-${{ matrix.os }}-py${{ matrix.python-version }} file: ./coverage.xml fail_ci_if_error: true