Skip to content

Commit 637f524

Browse files
authored
Test with Bazel 8 (#5)
1 parent 867708d commit 637f524

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,19 @@ on:
44
branches: [main]
55
pull_request:
66
jobs:
7-
test:
7+
tests:
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
bazel_version: [7.x, 8.0.0rc2]
912
steps:
1013
- uses: actions/checkout@v4
1114
- run: bazel test //...
1215
working-directory: example
16+
env:
17+
USE_BAZEL_VERSION: ${{ matrix.bazel_version }}
18+
test:
19+
runs-on: ubuntu-latest
20+
needs: tests
21+
steps:
22+
- run: echo "Tests passed!"

0 commit comments

Comments
 (0)