TopicUtils: silence GCC -Wmaybe-uninitialized in FullTopic() (#870) #616
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Bazel CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 'gz-transport[1-9]?[0-9]' | |
| - 'main' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v7.2.2 | |
| with: | |
| folders: | | |
| [ | |
| ".", | |
| ] | |
| exclude: | | |
| [ | |
| {"folder": ".", "bzlmodEnabled": false}, | |
| ] | |
| exclude_windows: true | |
| # Use opt compilation mode to prevent perf-related test flakiness. | |
| # This only adds a couple minutes of build time overhead. | |
| bazel_test_command: "bazel test -c opt --test_output=errors //..." |