aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 116f6454..0bb0693d 100644
--- a/Makefile
+++ b/Makefile
@@ -8,4 +8,7 @@ install:
go generate
go install -tags=deploy_build .
-.PHONY: build install
+test: build
+ go test ./...
+
+.PHONY: build install test