ci: add 'verify' CI check (inline Python workflow)#1
Merged
Conversation
Adds .github/workflows/ci.yml with a single 'verify' job gating every PR and pushes to master: byte-compile of all Python sources plus a PEP 517 sdist+wheel build, pinned to Python 3.10 (the requires-python floor). Deviates deliberately from the org reusable node-ci workflow (ZenSystemAI/.github/.github/workflows/node-ci-reusable.yml@main): this repo is PUBLIC and the .github repo is PRIVATE (public callers cannot use private reusable workflows), and ZenVox is a Python project with no package.json for the node workflow to act on. Rationale is documented in the workflow header. Both gate steps verified locally before push (compileall exit 0; build produced zenvox-1.0.0 sdist + wheel). actionlint 1.7.12: clean. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BBPjDftvw487JP5FePZs3s
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughAdds a GitHub Actions CI workflow triggered by pull requests and pushes to ChangesCI Verification
Estimated code review effort: 2 (Simple) | ~10 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
This was referenced Jul 19, 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.
What
Adds
.github/workflows/ci.yml— the repo's first CI. A single job, idverify, runs on every PR and on pushes tomaster:python -m compileall -q .) under Python 3.10 — the floor declared byrequires-python = ">=3.10"inpyproject.toml, so the declared minimum is actually verified.python -m build) — validatespyproject.tomlmetadata and that the sdist + wheel build cleanly.permissions: contents: read,timeout-minutes: 15, actions pinned to current major tags (checkout@v4,setup-python@v5).Why not the org reusable workflow
Plan 028 Phase 1.3 wires repos to
ZenSystemAI/.github/.github/workflows/node-ci-reusable.yml@main. That ref is not applicable to ZenVox, for two independently sufficient reasons:ZenSystemAI/.githubis private. GitHub only shares private-repo reusable workflows with other private repositories in the same org — a public caller gets "workflow was not found" no matter the Actions access policy. (This caveat is documented in the.githubrepo's README from the foundations step.)pyproject.toml+ setuptools, PyInstaller for release builds). There is nopackage.json, so the node workflow'ssetup-nodenpm cache andnpm cisteps would hard-fail on every PR forever — a permanent false-red, not an honest gate.The inline job id
verifysurfaces the check as bareverify(reusable calls would surface asverify / verify), which matches the org required-status-check convention directly.Honest scope note
ZenVox has no test suite. This workflow gates syntax + packaging only — the strongest honest gates available today. A dependency-install/import smoke was deliberately left out: the GUI/audio stack (
customtkinter,pyautogui,sounddevice) is not headless-CI-friendly and would produce flaky failures unrelated to code changes. When tests land, add a step to this job rather than weakening the existing gates.Test evidence
compileallexit 0;python -m buildproducedzenvox-1.0.0.tar.gz+zenvox-1.0.0-py3-none-any.whl.actionlint1.7.12: zero findings onci.yml.verifycheck runs against this very branch.Do not merge without operator approval — first CI wiring is infra-tier per the PR-flow rule.
🤖 Generated with Claude Code
https://claude.ai/code/session_01BBPjDftvw487JP5FePZs3s
Summary by CodeRabbit