From 6f14a2907b6800464239dee2faecfa574345ed4e Mon Sep 17 00:00:00 2001 From: yusing Date: Sun, 4 Jan 2026 21:57:25 +0800 Subject: [PATCH] fix(Makefile): correct test command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a5a805a..b5ca0f3e 100755 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ endif .PHONY: debug test: - go test -v -race ./internal/... + CGO_ENABLED=1 go test -v -race ${BUILD_FLAGS} ./internal/... docker-build-test: docker build -t godoxy .