Files
remark42/backend/vendor/github.com/dghubble/oauth1/Makefile
T
Umputun c5b927904f extend User struct with site_id/aud
updated to 0.8.0 of auth pkgs supporting user-space aud
2019-08-23 03:12:08 -05:00

20 lines
276 B
Makefile

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