You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/include.mk

5 lines
301 B

SETUP_GOTOOLS := @echo "Installing golint and vet" && go get -u github.com/golang/lint/golint && go get -u -v golang.org/x/tools/cmd/vet
GO_VET := @echo "Running go vet ..." && go vet ./...
GO_LINT := @echo "Running golint ..." && golint ./...
GO_TEST := @echo "Running tests ..." && go test -v ./...