Files
remark42/backend/vendor/github.com/dghubble/oauth1/Makefile
T
2023-01-21 13:30:44 -06:00

16 lines
219 B
Makefile

.PHONY: all
all: test vet fmt
.PHONY: test
test:
@go test $$(go list ./... | grep -v examples) -cover
.PHONY: vet
vet:
@go vet -all $$(go list ./... | grep -v examples)
.PHONY: fmt
fmt:
@test -z $$(go fmt ./...)