gothinkster / golang-gin-realworld-example-app

Exemplary real world application built with Golang + Gin
https://realworld.io
MIT License
2.5k stars 495 forks source link

Corrected Install Dependencies instructions in readme.md. #26

Closed pvillela closed 3 years ago

pvillela commented 3 years ago

Corrected the instructions to install dependencies. Running go mod tidy doesn't do it. Need to run go build ./....

pvillela commented 3 years ago

Further update to Install Dependencies instructions in readme.md to add go test ./... as go build ./... does not install the test dependencies.