profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

Golang tooling

Documentation

Install godoc with go get golang.org/x/tools/cmd/godoc

Documentation can be generated with

godoc --http :8000

Linters

Testing

Code coverage

go test -cover

Race conditions

go test -race

Vetting

Vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string. Vet uses heuristics that do not guarantee all reports are genuine problems, but it can find errors not caught by the compilers.

go vet