ci: drop Test PyPI upload, add pyproject/package metadata checks - #466
Merged
Conversation
Removes the Test PyPI publish step from the release workflow and adds validate-pyproject and twine check --strict checks to the static job in tests.yml.
blink1073
marked this pull request as ready for review
August 1, 2026 12:05
blink1073
enabled auto-merge (squash)
August 1, 2026 12:05
The runner only has poetry (via pipx) set up, not uv, so uvx was not found in CI.
CODECOV_TOKEN secrets aren't available on fork-triggered pull_request runs, so coverage upload was skipped entirely for fork PRs, and the required codecov/patch and codecov/project status checks never got reported, leaving fork PRs permanently blocked from merging. Codecov supports tokenless upload for public repos, so drop the fork-skip condition and let the token fall back to empty on forks.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #466 +/- ##
=======================================
Coverage 93.54% 93.54%
=======================================
Files 51 51
Lines 2974 2974
Branches 416 416
=======================================
Hits 2782 2782
Misses 131 131
Partials 61 61 🚀 New features to boost your workflow:
|
This was referenced Aug 1, 2026
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.
References
None
Description
Removes the Test PyPI publish step from the release workflow, and adds static package checks (
validate-pyprojectandtwine check --strict) to thestaticjob in the tests workflow.Changes
.github/workflows/release.yml: removed the "Upload package to Test PyPI" step from thepublishjob..github/workflows/tests.yml: addedValidate pyproject.toml(viavalidate-pyproject[all]) andCheck package metadata(viauv build+twine check --strict) steps to thestaticjob.Backwards-incompatible changes
None
Testing
Ran
just typingandjust pre-commitlocally; both passed.AI usage