Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .bazeliskrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
USE_BAZEL_VERSION=5.4.0
10 changes: 8 additions & 2 deletions .github/workflows/c.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,15 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Bazel
run: |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.15.0/bazelisk-linux-amd64"
mkdir -p "${GITHUB_WORKSPACE}/bin/"
mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
chmod +x "${GITHUB_WORKSPACE}/bin/bazel"
- name: Bazel Build & Test
run:
bazel test //...
run: |
${GITHUB_WORKSPACE}/bin/bazel test //...


windows-2019:
Expand Down