An open API service indexing awesome lists of open source software.

https://github.com/filmil/bazel-go-tool-example

An example minimal bazel repository with a go tool built from source.
https://github.com/filmil/bazel-go-tool-example

Last synced: about 2 months ago
JSON representation

An example minimal bazel repository with a go tool built from source.

Awesome Lists containing this project

README

        

# Example go tool repository

This is an example repository containing the basic setup for go tooling.
The idea is that you can copy this repo and start your own easily.

# Refresh build files like this

```
bazel run //:gazelle
```

# Build and run the binary like this

```
bazel run //bin/hello
```

# Run tests

```
bazel test //...
```