aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e05ad1b5a3c840473ecf42850aa868928e2e507b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: lint test install

test:
	go test ./...

vet:
	go vet ./...

check-fmt:
	bash -c "diff --line-format='%L' <(echo -n) <(gofmt -d -s .)"

lint: check-fmt vet

install:
	go install ./...