9b12e4f
1 2 3 4 5 6 7 8 9 10 11
.PHONY: default lint test default: lint test lint: @golint ./... @go vet ./... test: go test ${GOTEST_ARGS} ./...