forked from goat-systems/tzpay
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
37 lines (26 loc) · 1013 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
PROJECT_NAME := "tzpay"
VERSION := "v3.0.2"
PKG := "github.com/goat-systems/$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
.PHONY: dep clean test coverage coverhtml lint
checks: fmt lint staticcheck race test ## Runs all quality checks
lint: ## Lint the files
@golint -set_exit_status ${PKG_LIST}
staticcheck: ## Static check the files
@staticcheck ${PKG_LIST}
fmt: ## Static check the files
@go fmt ${PKG_LIST}
test: ## Run unittests
@go test -v ${PKG_LIST}
race: ## Run data race detector
@go test -race -v ${PKG_LIST}
dep: ## Get the dependencies
@go get -u golang.org/x/lint/golint
@go get -u honnef.co/go/tools/...
build: ## Get the dependencies
@go build
clean: ## Remove previous build
@rm -f $(PROJECT_NAME)
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'