terraform/vendor/github.com/DreamItGetIT/statuscake/makefile

12 lines
121 B
Makefile

.PHONY: default lint test
default: lint test
lint:
@golint ./...
@go vet ./...
test:
go test ${GOTEST_ARGS} ./...