From fa7b390d7b35517989a3b6647867fbc4af90aeaa Mon Sep 17 00:00:00 2001 From: Rafael Haenel Date: Tue, 21 Jul 2026 17:28:41 -0400 Subject: [PATCH] Stabilize Codecov upload --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3652bac2..1c6c8587 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,10 +35,12 @@ jobs: # For example, using `pytest` run: uv run just coverage - name: Upload Coverage to Codecov + if: matrix.python-version == '3.12' uses: codecov/codecov-action@v7 with: files: coverage.xml # optional fail_ci_if_error: true # optional (default = false) + use_pypi: true verbose: true # optional (default = false) token: ${{ secrets.CODECOV_TOKEN }} # required - name: Archive code coverage results