From abfd08cc26e59d5e2a40e5e2ce0302bad839fcd9 Mon Sep 17 00:00:00 2001 From: keedosn Date: Mon, 14 Mar 2022 16:23:11 +0100 Subject: [PATCH] [fix] Fixed makefile test target --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9e5ae85..0d24256 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +.PHONY: test + run: go run cmd/server/main.go @@ -7,7 +9,7 @@ race: build: go build cmd/server/main.go -tests: +test: go test -v -run=. test/**/*.go bench: bench-clean