Make suppression tags configurable #50
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [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@v6 | |
with: | |
folders: | | |
[ | |
".", | |
"examples/demo", | |
] | |
# we only support Bazel 7, and only with bzlmod enabled | |
exclude: | | |
[ | |
{"bzlmodEnabled": false}, | |
{"bazelversion": "5.4.0"}, | |
{"bazelversion": "6.4.0"}, | |
] | |
# this ruleset only supports linux and macos | |
exclude_windows: true |