tree: aedda18735cd11aa89f7f86fe154baa2a4b073e2 [path history] [tgz]
  1. api/
  2. cmd/
  3. pkg/
  4. README.md
go/README.md

Go SDK

Usage

TODO(jsharpe): Write usage instructions.

Development

Update BUILD.bazel files with (with fix to be more aggressive):

bazel run //:gazelle [fix]

Update go.mod files with:

go mod tidy

Format all files with:

gofmt -w go

Check your code for lint/vet warnings (install golint with sudo apt-get install golint):

golint ./...
go vet ./...

Run all tests:

bazel test ...

or

go test ./...