diff options
author | Markus Wüstenberg | 2022-11-15 22:32:01 +0100 |
---|---|---|
committer | GitHub | 2022-11-15 22:32:01 +0100 |
commit | c615204215c9321a4a2ef87479147473ddf83a3d (patch) | |
tree | 66377cc39a761af1f6c0047459a3f03580ae1131 | |
parent | 868a525244f3c55ecb36df352865f4266dd41089 (diff) | |
download | gomponents-c615204215c9321a4a2ef87479147473ddf83a3d.tar.lz gomponents-c615204215c9321a4a2ef87479147473ddf83a3d.tar.zst gomponents-c615204215c9321a4a2ef87479147473ddf83a3d.zip |
Put .PHONY in front of each target in Makefile (#118)
-rw-r--r-- | Makefile | 6 |
1 files 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 ./... |