test(ci): add compile-only CI guard for broken test regression#125
Open
kangeunchan wants to merge 1 commit intoaltuslabsxyz:mainfrom
Open
test(ci): add compile-only CI guard for broken test regression#125kangeunchan wants to merge 1 commit intoaltuslabsxyz:mainfrom
kangeunchan wants to merge 1 commit intoaltuslabsxyz:mainfrom
Conversation
Signed-off-by: kangeunchan <kangeunchan080310@gmail.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.
Enhancement Description
Prevent silent test breakages by adding a compile-only test gate in CI.
Summary
This PR adds a fast compile-only
go testguard so test compilation regressions fail immediately in CI.Previously, compile regressions could slip through:
Now CI always validates that test code compiles even when runtime-heavy paths are skipped.
What Changed
1) Added compile-only test gate to CI
Updated:
.github/workflows/ci.ymlGuard command:
go test ./... -run='^$'2) Kept runtime test behavior unchanged
3) Improved failure feedback timing
4) Tests
Validation is CI-focused for this change.
Why This Is Needed
This is a CI reliability improvement.
Compile-time test failures should fail fast and predictably.
Behavior Notes / Regression Impact
No product runtime behavior change.
Only CI/test pipeline behavior is tightened.
Validation Performed
go test ./... -run='^$'