mc-router/Makefile
2018-05-09 18:37:15 -05:00

13 lines
245 B
Makefile

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