Skip to content

Latest commit

Β 

History

History
48 lines (31 loc) Β· 959 Bytes

File metadata and controls

48 lines (31 loc) Β· 959 Bytes

nOracle

Go Report Card

πŸ“¦ Requirements

πŸš€ Getting Started

Install Go dependencies

Use Bazel to tidy the Go module and fetch external dependencies.

bazel mod tidy

Build all targets

This ensures all Bazel targets in the repo are building correctly.

bazel build //...

Generate or update Bazel build files with Gazelle

Gazelle scans your Go code and automatically generates or updates BUILD.bazel files.

bazel run //:gazelle

βœ… Re-run Gazelle whenever:

  • You add or remove .go files
  • You rename Go packages or files
  • You change import paths

Run tests

This ensures all Bazel targets in the repo are tested correctly.

bazel test //...