wg-quicker/vendor/github.com/dghubble/sling/Makefile

20 lines
206 B
Makefile

.PHONY: all
all: test vet lint fmt
.PHONY: test
test:
@go test . -cover
.PHONY: vet
vet:
@go vet -all .
.PHONY: lint
lint:
@golint -set_exit_status ./...
.PHONY: fmt
fmt:
@test -z $$(go fmt ./...)