Repositório de exemplo com Bazel + GoogleTest e GitHub Actions.
- Bazel 7.x (ou Bazelisk)
- Compilador C++17
bazel sync
bazel build //...
bazel test //....
├── MODULE.bazel
├── .bazelrc
├── src/
│ ├── BUILD
│ ├── funcoes.hpp
│ └── funcoes.cpp
├── tests/
│ ├── BUILD
│ └── funcoes_test.cpp
└── .github/workflows/ci.yml
O pipeline usa bazel-contrib/setup-bazel para instalar Bazel e com cache ativado.