github.com/go-playground/pkg/v5@v5.29.1/Makefile (about) 1 GOCMD=GO111MODULE=on go 2 3 test: 4 $(GOCMD) test -cover -race ./... 5 6 bench: 7 $(GOCMD) test -run=NONE -bench=. -benchmem ./... 8 9 lint: 10 golangci-lint run 11 12 .PHONY: lint test bench