pm/Makefile

11 lines
196 B
Makefile
Raw Normal View History

2018-03-02 23:23:23 -08:00
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/...)