makefile 223 B

1234567891011121314151617
  1. SHELL="/bin/bash"
  2. GOFILES_NOVENDOR = $(shell go list ./... | grep -v /vendor/)
  3. all: vet fmt test
  4. fmt:
  5. go fmt $(GOFILES_NOVENDOR)
  6. vet:
  7. go vet $(GOFILES_NOVENDOR)
  8. test: vet
  9. ./scripts/test_all.sh
  10. .PHONY: all vet test