Go - bootstraponline/meta GitHub Wiki
Install & uninstall
go get -u github.com/GoogleCloudPlatform/docker-credential-gcrgo clean -i -n github.com/GoogleCloudPlatform/docker-credential-gcr
Code quality
go fmtformats the code- golint identifies lint issues
go get -u github.com/golang/lint/golint
- errcheck identifies unchecked errors
go get -u github.com/kisielk/errcheck
unusedgo get -u honnef.co/go/tools/cmd/unused
gosimplego get -u honnef.co/go/tools/cmd/gosimple
Mocks & Testing
Code coverage
Print coverage
go test -cover
HTML coverage report
go test -coverprofile=coverage.outgo tool cover -html=coverage.out