diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,13 +1,13 @@ -.PHONY=all test cov covhtml clean +.PHONY=all test testjson vet vetjson cov covhtml clean all: go1.18beta1 build -ldflags='-s -w' test: - go1.18beta1 test ./... + go1.18beta1 test -cover ./... testjson: - go1.18beta1 test -json ./... + go1.18beta1 test -json -cover ./... vet: go1.18beta1 vet ./... |