summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d1b3232..29e5762 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ MOD=ricketyspace.net/peach
PKGS=${MOD}/cache ${MOD}/client ${MOD}/nws ${MOD}/photon
CSS=static/peach.min.css
-peach: fix fmt ${CSS}
+peach: vet fix fmt ${CSS}
go build ${BUILD_OPTS}
fmt:
@@ -16,6 +16,10 @@ fix:
go fix ${MOD} ${PKGS}
.PHONY: fix
+vet:
+ go vet ${MOD} ${PKGS}
+.PHONY: vet
+
test:
go test ${PKGS} ${ARGS}
.PHONY: test