Adds makefile

This commit is contained in:
sm
2018-03-02 23:23:23 -08:00
parent 52a4a7ed7b
commit eef69d299a
+10
View File
@@ -0,0 +1,10 @@
default: lint test
.PHONY: lint
lint:
@golint $(shell go list mcquay.me/pm/...)
@go vet $(shell go list mcquay.me/pm/...)
.PHONY: test
test:
@go test -cover $(shell go list mcquay.me/pm/...)