1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-31 06:49:54 +00:00
rke/vendor/github.com/matttproud/golang_protobuf_extensions/Makefile.TRAVIS
2018-10-18 12:30:00 -07:00

16 lines
181 B
Makefile

all: build cover test vet
build:
go build -v ./...
cover: test
$(MAKE) -C pbutil cover
test: build
go test -v ./...
vet: build
go vet -v ./...
.PHONY: build cover test vet