1all: vet staticcheck test 2 3test: 4 GODEBUG=x509sha1=1 go test -covermode=count -coverprofile=coverage.out . 5 6showcoverage: test 7 go tool cover -html=coverage.out 8 9vet: 10 go vet . 11 12lint: 13 golint . 14 15staticcheck: 16 staticcheck . 17 18gettools: 19 go get -u honnef.co/go/tools/... 20 go get -u golang.org/x/lint/golint