blob: 74c0842230518ace0fec1fc2a220a6eb13602a72 [file] [log] [blame]
khenaidooffe076b2019-01-15 16:08:08 -05001SHELL="/bin/bash"
2
3GOFILES_NOVENDOR = $(shell go list ./... | grep -v /vendor/)
4
5all: vet fmt test
6
7fmt:
8 go fmt $(GOFILES_NOVENDOR)
9
10vet:
11 go vet $(GOFILES_NOVENDOR)
12
13test: vet
14 ./scripts/test_all.sh
15
16.PHONY: all vet test