blob: 51dc5b8f2007c0c401fe8443bfbb21d4b25e72a7 [file] [log] [blame]
Girish Kumar2ed051b2020-07-28 16:35:25 +00001SHELL=/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 test