Closed pvillela closed 3 years ago
Corrected the instructions to install dependencies. Running go mod tidy doesn't do it. Need to run go build ./....
go mod tidy
go build ./...
Further update to Install Dependencies instructions in readme.md to add go test ./... as go build ./... does not install the test dependencies.
go test ./...
Corrected the instructions to install dependencies. Running
go mod tidy
doesn't do it. Need to rungo build ./...
.