pulumi/Makefile

10 lines
180 B
Makefile
Raw Normal View History

PROJECT=github.com/marapongo/mu
2016-11-16 04:25:06 +01:00
PROJECT_PKGS=$(shell go list ./... | grep -v /vendor/)
all:
2016-11-16 04:25:06 +01:00
go test ${PROJECT_PKGS}
go install ${PROJECT}
golint ${PROJECT}
go vet ${PROJECT}