Code written while following along Learn Go with tests
Run all tests in module
go test -v ./...
Run all tests in workspace (source)
go list -f '{{.Dir}}' -m | xargs go test -v -cover
Run godoc server
# visit localhost:8080 on any browser
godoc -http :8080