go.mway.dev/math@v0.3.4-0.20220903004814-3c8fcf9df0ca/Makefile (about) 1 .PHONY: test 2 test: 3 @go test -v -race -failfast -count 1 -coverprofile cover.out ./... 4 5 .PHONY: bench 6 bench: 7 @go test -v -count 1 -run x -bench . ./... 8 9 .PHONY: lint 10 lint: go.sum 11 @golangci-lint run --new=false ./... 12 13 go.sum: go.mod 14 @go mod tidy