审查视图

vendor/github.com/gavv/httpexpect/Makefile 156 字节
tangxvhui authored
1 2 3 4 5 6 7 8 9 10 11 12 13
all: update test check

update:
	go get -u -t . ./_examples

test:
	go test . ./_examples

check:
	golangci-lint run ./...

fmt:
	gofmt -s -w . ./_examples