...

Text file src/github.com/grpc-ecosystem/go-grpc-prometheus/makefile

Documentation: github.com/grpc-ecosystem/go-grpc-prometheus

     1SHELL="/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

View as plain text