Skip to content

Commit dc52f56

Browse files
ci: build the Bazel example in CI
1 parent 564fe42 commit dc52f56

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build_and_test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v4
4949
- uses: actions/setup-python@v5
5050
with:
51-
python-version: '3.9'
51+
python-version: "3.9"
5252
- name: Build
5353
run: |
5454
pip install build
@@ -89,3 +89,13 @@ jobs:
8989
- name: Test
9090
run: |
9191
bazelisk test --lockfile_mode=error //...
92+
93+
bazel_use_module:
94+
name: Build Bazel example
95+
runs-on: "ubuntu-22.04"
96+
steps:
97+
- uses: actions/checkout@v4
98+
- name: Build
99+
run: |
100+
cd examples/bazel
101+
bazelisk build --lockfile_mode=off //...

0 commit comments

Comments
 (0)