aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: e0b94ffed54ba124872f22ee4639fc132c9499e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY=all test clean check

all: 
	go build -trimpath -ldflags='-s -w'

test:
	go test ./...

check:
	go vet ./...
	staticcheck ./...

clean:
	go clean