github.com/samiam2013/sqlvet@v0.0.0-20221210043606-d72f678fc0aa/Makefile (about)

     1  test:
     2  	go mod tidy
     3  	go test -failfast -timeout 20s -race ./...
     4  
     5  cover:
     6  	go test -coverprofile=go-cover.profile -timeout 5s ./...
     7  	go tool cover -html=go-cover.profile
     8  	rm go-cover.profile