all repos — gomponents @ c615204215c9321a4a2ef87479147473ddf83a3d

HTML components in pure Go

Put .PHONY in front of each target in Makefile (#118)

Markus Wüstenberg markus@maragu.dk
Tue, 15 Nov 2022 22:32:01 +0100
commit

c615204215c9321a4a2ef87479147473ddf83a3d

parent

868a525244f3c55ecb36df352865f4266dd41089

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M MakefileMakefile
@@ -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 ./...