Create xacro Bazel module #32
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: Bazel CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v7 | |
with: | |
folders: | | |
[ | |
".", | |
"bazel/integration_test", | |
] | |
# Explicitly exclude build/test configurations where bzlmod is disabled. | |
# Since xacro only supports bzlmod, these will always fail. | |
# Remove these exclusions when workspace support is dropped. | |
exclude: | | |
[ | |
{"folder": ".", "bzlmodEnabled": false}, | |
{"folder": "bazel/integration_test", "bzlmodEnabled": false}, | |
] |