From dff5c58a31ff7cb843425662b35417dd8bde7138 Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Tue, 9 Jun 2026 14:40:09 +0300 Subject: [PATCH] ci: drop codecov upload step Matches modern-di, which removed codecov from its CI rather than bumping codecov-action. Coverage is still computed and enforced locally: pyproject.toml sets --cov-fail-under=100, so the floor is protected by the test run itself. Keeps the --cov-report xml flag for parity with modern-di (cheap, no consumer). Operator follow-up: the CODECOV_TOKEN repo secret is now unused and can be deleted from Settings -> Secrets and variables -> Actions. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8427f9..669adee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,10 +44,3 @@ jobs: - run: uv python install ${{ matrix.python-version }} - run: just install - run: just test . --cov=. --cov-report xml - - uses: codecov/codecov-action@v4.0.1 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - with: - files: ./coverage.xml - flags: unittests - name: codecov-${{ matrix.python-version }}