summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 6c2f1b7771742d95b9569511954e7502d8f40b94 (plain)
1
2
3
4
5
6
7
8
9
10
usage:
	echo "See Makefile"

vet:
	go vet ./...

check: staticcheck vet

staticcheck:
	go run honnef.co/go/tools/cmd/staticcheck -- $$(go list ./... | grep -v tempfork)