ci: drop codecov upload step#23
Merged
Merged
Conversation
Coverage floor is already enforced by --cov-fail-under=100 in pyproject.toml's [tool.pytest.ini_options], so codecov-action wasn't guarding anything. Drops the step ahead of GitHub's 2026-06-16 Node 20 deprecation that would have force-upgraded codecov-action@v4.0.1 to Node 24 with unclear effects. 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) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removes the
codecov/codecov-action@v4.0.1upload step frommain.yml. Coverage floor is already enforced by--cov-fail-under=100inpyproject.toml's[tool.pytest.ini_options], so codecov-action wasn't guarding anything that the test run doesn't already catch.Why now
The recent CI bump-pins PR (#22) surfaced a GitHub deprecation warning:
codecov-action@v4.0.1runs on Node.js 20, which GitHub force-upgrades to Node.js 24 on 2026-06-16. Rather than carry that risk for a step that adds no enforcement, drop it.Operator follow-up
CODECOV_TOKENrepo secret is now unused. Can be deleted from Settings → Secrets and variables → Actions whenever convenient.Test plan
--cov-fail-under=100inpyproject.toml.🤖 Generated with Claude Code