Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
branches:
- master
- prepare-release
# Support triggering the CI workflow manually.
workflow_dispatch:

permissions:
contents: read
Expand Down Expand Up @@ -67,6 +69,10 @@ jobs:
bazel_module_example:
name: bazel module example test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
bazel_version: ["7.*", "8.*", "9.*"]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand All @@ -75,7 +81,10 @@ jobs:
~/.cache/bazel
~/.cache/bazelisk
key: ${{ runner.os }}-bazel-cache
- run: |
- name: Build
env:
USE_BAZEL_VERSION: ${{ matrix.bazel_version }}
run: |
# We leave the lockfile off for this. lockfile_mode=off is also
# set in the .bazelrc in the examples/bazel/ directory.
# The example directly references the local jsonnet_go module from
Expand Down
Loading