Add CI to run the setup-repo test suites - #4
Merged
Merged
Conversation
Nothing in this repo exercised the scaffolding tests, so engine/asset regressions could slip through. Add a workflow that installs the test tools via uv (matching the org Python standard) and runs the three setup-repo suites (python-assets, ci-assets, scaffold e2e) on push to main and every PR. Co-Authored-By: Claude Opus 4.8 (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.
The repo had no workflow exercising the
setup-reposcaffolding tests, so regressions in the assets, the scaffold engine, or the CI/asset validators could merge undetected (flagged in PR #1's final review).What this adds
.github/workflows/setup-repo-tests.yml— on push tomainand every PR:astral-sh/setup-uv+uv pip install --system pyyaml ruff pytest), matching the org Python standard the skill itself scaffolds;test-python-assets.sh,test-ci-assets.sh, and the end-to-endtest-scaffold.sh(which now runs realruff/pytestagainst a scaffolded temp repo, since the tools are installed).Notes
run:steps are static bash with no${{ github.event.* }}interpolation — no injection surface.🤖 Generated with Claude Code