2013-06-15 14:18:48 +08:00
|
|
|
help:
|
|
|
|
@echo "Available targets:"
|
|
|
|
@echo "- test: run tests"
|
2016-07-27 03:55:16 +08:00
|
|
|
@echo "- deps: installs dependencies with glide"
|
2013-06-15 14:18:48 +08:00
|
|
|
|
2016-07-27 03:55:16 +08:00
|
|
|
deps:
|
|
|
|
glide up
|
2013-06-15 14:18:48 +08:00
|
|
|
|
2016-07-27 03:55:16 +08:00
|
|
|
test: deps
|
2013-06-15 14:18:48 +08:00
|
|
|
go test -i && go test
|