github.com/nats-io/jwt/v2@v2.5.6/v1compat/Makefile (about) 1 .PHONY: test cover 2 3 build: 4 go build 5 6 test: 7 ../../../scripts/test.sh 8 9 fmt: 10 gofmt -w -s *.go 11 go mod tidy 12 cd v2/ 13 gofmt -w -s *.go 14 go mod tidy 15 16 cover: 17 go test -v -covermode=count -coverprofile=coverage.out 18 go tool cover -html=coverage.out