aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7ff8ea9..a1b1232 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,12 @@ test:
testjson:
go1.18beta1 test -json ./...
+vet:
+ go1.18beta1 vet ./...
+
+vetjson:
+ go1.18beta1 vet -json ./...
+
cov:
go1.18beta1 test -coverprofile=coverage.out ./... && \
go1.18beta1 tool cover -func=coverage.out