Add CI and satisfy Tailtest validation gates - #11
Open
BananaAccurate wants to merge 4 commits into
Open
Conversation
This was referenced Jul 30, 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.
Summary
This is a clean validation-gates branch built from the existing stale-queue repair line:
f9ff682(Fix compact watermark rebasing and Windows test stability)4e84d5a(Fix stale Tailtest mtime queueing)It does not include PR #9's Stop defer/no-more-tools contract change; that remains a separate focused PR.
Root cause
Upstream currently has no GitHub Actions workflows, so open PRs report no automated checks. A CI-only branch against
mainwould be red because the current upstream baseline fails Windows tests and Ruff gates. This branch stacks the already-open prerequisite repairs with CI plus validation-gate cleanup so the proposed checks have a green target.Changes
.github/workflows/ci.ymlwith normalpull_requestandpushtriggers.contents: read.pull_request_targetand privileged workflow behavior.python -m pytest -q,python -m ruff check ., andpython -m ruff format --check .onubuntu-latestandwindows-latest.Validation
Run from
C:\Users\enhal\.codex\worktrees\tailtest-validation-gatesat30cbbff:python -m pytest -q→ exit 0,410 passed in 36.86spython -m ruff check .→ exit 0,All checks passed!python -m ruff format --check .→ exit 0,38 files already formattedgit diff --check→ exit 0python3 -m pytest -q && python3 -m ruff check . && python3 -m ruff format --check .→ exit 0,410 passed, Ruff check passed,27 files already formattedSecurity notes
pull_request_target.contents: read.Remaining limitation
Because the base repository currently has no workflow on
main, GitHub may not run this newly added workflow as a required PR check until the workflow exists on the base branch. Maintainer review/merge is still required.