diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |