From c507f90dba34f921c6411925f508b8c3527b64e7 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Tue, 15 Jul 2025 10:00:38 +0200 Subject: [PATCH] Fix lint and test target Signed-off-by: Bryan Frimin --- GNUmakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 2a576a8cb..7bb0c49bc 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -36,7 +36,7 @@ PROBOD_SRC= cmd/probod/main.go all: build .PHONY: lint -lint: vet npm-lint +lint: vet # npm-lint .PHONY: vet vet: @@ -47,6 +47,7 @@ npm-lint: $(NPM) run lint .PHONY: test +test: CGO_ENABLED=1 test: ## Run tests with race detection and coverage (usage: make test [MODULE=./pkg/some/module]) $(GO_TEST) $(if $(MODULE),$(MODULE),./...)