about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
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 ./...