blob: e77bc13b9d5f8c3a2812918318635dbdb55c0979 [file] [edit]
.DEFAULT_GOAL := help
.PHONY: help
help: ## Outputs the help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: test
test: ## Runs all unit tests
go test -v -race ./...
.PHONY: vet
vet: ## Runs go vet
go vet ./...
.PHONY: staticcheck
staticcheck: ## Runs static code analyzer staticcheck
go get -u honnef.co/go/tools/cmd/staticcheck
staticcheck ./...