kubernetes/vendor/github.com/grpc-ecosystem/go-grpc-prometheus/makefile
Han Kang b052c2cee9 bump go-grpc-prometheus since 1.2.0 actually exposes the metrics
v1.1.0 (which is what we currently use), does not expose metrics which
makes it impossible to migrate.
2019-08-13 16:06:10 -07:00

17 lines
223 B
Makefile

SHELL="/bin/bash"
GOFILES_NOVENDOR = $(shell go list ./... | grep -v /vendor/)
all: vet fmt test
fmt:
go fmt $(GOFILES_NOVENDOR)
vet:
go vet $(GOFILES_NOVENDOR)
test: vet
./scripts/test_all.sh
.PHONY: all vet test