mirror of
https://github.com/itzg/mc-router.git
synced 2024-11-05 09:00:02 +01:00
13 lines
245 B
Makefile
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
|