-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
46 lines (34 loc) · 1.18 KB
/
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
38
39
40
41
42
43
44
45
46
PKGS_WITH_OUT_EXAMPLES := $(shell go list ./... | grep -v 'examples/')
PKGS_WITH_OUT_EXAMPLES_AND_UTILS := $(shell go list ./... | grep -v 'examples/\|utils/')
GO_FILES := $(shell find . -name "*.go" -not -path "./vendor/*" -not -path ".git/*" -print0 | xargs -0)
checkTravis: overalls vet lint misspell staticcheck cyclo const veralls test
checkCircle: overalls vet lint misspell staticcheck cyclo const test
checkLocal: overalls vet lint misspell staticcheck cyclo const test
overalls:
@echo "overalls"
overalls -project=github.com/aberic/proc -covermode=count -ignore='.git,_vendor'
vet:
@echo "vet"
go vet $(PKGS_WITH_OUT_EXAMPLES)
lint:
@echo "golint"
golint -set_exit_status $(PKGS_WITH_OUT_EXAMPLES_AND_UTILS)
misspell:
@echo "misspell"
misspell -source=text -error $(GO_FILES)
staticcheck:
@echo "staticcheck"
staticcheck $(PKGS_WITH_OUT_EXAMPLES)
cyclo:
@echo "gocyclo"
gocyclo -over 50 $(GO_FILES)
# gocyclo -top 10 $(GO_FILES)
const:
@echo "goconst"
goconst $(PKGS_WITH_OUT_EXAMPLES)
veralls:
@echo "goveralls"
goveralls -coverprofile=overalls.coverprofile -service=travis-ci -repotoken $(COVERALLS_TOKEN)
test:
@echo "test"
go test -v -cover $(PKGS_WITH_OUT_EXAMPLES)