all repos — gomponents @ c615204215c9321a4a2ef87479147473ddf83a3d

HTML components in pure Go

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

Markus Wüstenberg
commit

c615204215c9321a4a2ef87479147473ddf83a3d

parent

868a525244f3c55ecb36df352865f4266dd41089

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

changed files
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 ./...