From 6fbcfc6b1d82b29a25795eb000f3b3d6db91f1b9 Mon Sep 17 00:00:00 2001 From: kangeunchan Date: Fri, 27 Feb 2026 13:12:48 +0900 Subject: [PATCH] ci(test): add compile-only go test guard Signed-off-by: kangeunchan --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f30413f6..30b467ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,6 +109,9 @@ jobs: - name: Download dependencies run: go mod download + - name: Compile test packages only + run: go test ./... -run='^$' + - name: Run tests with race detection run: go test -p 1 -race -v ./...