From c615204215c9321a4a2ef87479147473ddf83a3d Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Tue, 15 Nov 2022 22:32:01 +0100 Subject: Put .PHONY in front of each target in Makefile (#118) --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 94178dc..67a1e22 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,16 @@ -.PHONY: benchmark cover lint test - +.PHONY: benchmark benchmark: go test -bench=. +.PHONY: cover cover: go tool cover -html=cover.out +.PHONY: lint lint: golangci-lint run +.PHONY: test test: go test -coverprofile=cover.out -shuffle on ./... -- cgit 1.4.1