forked from aiven/aiven-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
44 lines (33 loc) · 778 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
38
39
40
41
42
43
44
ci: lint
.PHONY: ci
#################################################
# Bootstrapping for base golang package deps
#################################################
BOOTSTRAP=\
github.com/alecthomas/gometalinter
$(BOOTSTRAP):
go get -u $@
bootstrap: $(BOOTSTRAP)
gometalinter --install
vendor:
update-vendor:
.PHONY: $(BOOTSTRAP)
#################################################
# Testing and linting
#################################################
LINTERS=\
gofmt \
golint \
gosimple \
vet \
misspell \
ineffassign \
deadcode
METALINT=gometalinter --tests --disable-all --vendor --deadline=5m -e "zz_.*\.go" \
./... --enable
test: vendor
CGO_ENABLED=0 go test -v ./...
lint: $(LINTERS)
$(LINTERS): vendor
$(METALINT) $@
.PHONY: $(LINTERS) test lint