mc-router/Makefile

13 lines
245 B
Makefile
Raw Normal View History

2018-05-10 01:37:15 +02:00
test: vendor
go test ./...
vendor:
dep ensure -vendor-only
.PHONY: release
release: vendor
curl -sL https://git.io/goreleaser | bash
.PHONY: install-dep
install-dep:
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh