dt_automate/vendor/github.com/unidoc/pkcs7/Makefile
2025-02-19 18:30:19 +08:00

27 lines
343 B
Makefile

all: vet unused gosimple staticcheck test
test:
go test -covermode=count -coverprofile=coverage.out .
showcoverage: test
go tool cover -html=coverage.out
vet:
go vet .
lint:
golint .
unused:
unused .
gosimple:
gosimple .
staticcheck:
staticcheck .
gettools:
go get -u honnef.co/go/tools/...
go get -u golang.org/x/lint/golint