iperf3exporter/vendor/github.com/dghubble/sling/Makefile
Marvin Preuss 2343c9588a
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
first commit
2021-10-20 10:08:56 +02:00

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 ./...)