blob: e0880ff67b9e983faf27434aa8f2966f249f76e2 (
plain)
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
|
.PHONY: \
all \
lint \
fmt \
pretest \
test \
integration
all: test
lint:
cd /tmp && GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@latest
golangci-lint run
fmt:
GO111MODULE=off go get mvdan.cc/gofumpt
gofumpt -s -w .
pretest: lint
gotest:
go test -race -vet all ./...
test: pretest gotest
integration:
go test -tags docker_integration -run TestIntegration -v
|