goes/Makefile
2016-09-27 14:34:50 -05:00

15 lines
405 B
Makefile

help:
@echo "Available targets:"
@echo "- test: run tests"
@echo "- deps: installs dependencies with glide"
@echo "- watch: watch for changes and re-run tests"
deps:
glide install && go install github.com/onsi/ginkgo/ginkgo
test: deps
ginkgo -race -randomizeAllSpecs -r -skipPackage vendor -progress .
watch: deps
ginkgo watch -race -randomizeAllSpecs -r -skipPackage vendor -progress -notify .