From 2803138a2e74c7a5f23136d1382db742d9519d2c Mon Sep 17 00:00:00 2001 From: Niklas Netter Date: Tue, 22 Oct 2024 13:42:49 +0200 Subject: [PATCH 1/2] fix: add codecov secrets --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a4fc898..5b40997 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -154,3 +154,6 @@ jobs: - name: Upload coverage report uses: codecov/codecov-action@v4 + with: + fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} From 0260ae4425c2355be373e01ab438cd59ecb9c92a Mon Sep 17 00:00:00 2001 From: Niklas Netter Date: Tue, 22 Oct 2024 13:51:44 +0200 Subject: [PATCH 2/2] bump checkout and setup-python --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5b40997..3ca45ac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -115,10 +115,10 @@ jobs: needs: tests steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.10"