diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dbca0e3 --- /dev/null +++ b/Makefile @@ -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/...)