Surfaced by the self-review on the #196 stack: .github/workflows/release.yml and pages.yml contain no go test invocation, so the repo's test suite (including the 400+-line candyland singleton suite) never runs in CI — a regression only surfaces when a developer happens to run tests locally.
Fix shape: a test workflow (or a job in the release workflow) running go run ./cmd/generate && go vet ./... && go test ./... on push/PR.
🤖 Generated with Claude Code
Surfaced by the self-review on the #196 stack:
.github/workflows/release.ymlandpages.ymlcontain nogo testinvocation, so the repo's test suite (including the 400+-line candyland singleton suite) never runs in CI — a regression only surfaces when a developer happens to run tests locally.Fix shape: a test workflow (or a job in the release workflow) running
go run ./cmd/generate && go vet ./... && go test ./...on push/PR.🤖 Generated with Claude Code