workgroups/vendor/github.com/dghubble/sling/Makefile
Marvin Preuss 1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone yaml with reusable anchors
2021-09-24 17:34:17 +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 ./...)