| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .PHONY: all
- all: setup lint test
- .PHONY: test
- test: setup
- go test -bench ./...
- .PHONY: cover
- cover: setup
- mkdir -p coverage
- gocov test ./... | gocov-html > coverage/coverage.html
- sources = $(shell find . -name '*.go' -not -path './vendor/*')
- .PHONY: goimports
- goimports: setup
- goimports -w $(sources)
- .PHONY: lint
- lint: setup
- gometalinter ./... --enable=goimports --disable=gocyclo --vendor -t
- .PHONY: install
- install: setup
- go install
- BIN_DIR := $(GOPATH)/bin
- GOIMPORTS := $(BIN_DIR)/goimports
- GOMETALINTER := $(BIN_DIR)/gometalinter
- DEP := $(BIN_DIR)/dep
- GOCOV := $(BIN_DIR)/gocov
- GOCOV_HTML := $(BIN_DIR)/gocov-html
- $(GOIMPORTS):
- go get -u golang.org/x/tools/cmd/goimports
- $(GOMETALINTER):
- go get -u github.com/alecthomas/gometalinter
- gometalinter --install &> /dev/null
- $(GOCOV):
- go get -u github.com/axw/gocov/gocov
- $(GOCOV_HTML):
- go get -u gopkg.in/matm/v1/gocov-html
- $(DEP):
- go get -u github.com/golang/dep/cmd/dep
- tools: $(GOIMPORTS) $(GOMETALINTER) $(GOCOV) $(GOCOV_HTML) $(DEP)
- vendor: $(DEP)
- dep ensure
- setup: tools vendor
- updatedeps:
- dep ensure -update
|