Skip to content
Open
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=8.5.1
27 changes: 27 additions & 0 deletions .github/workflows/bazel-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Bazel Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/setup-bazel@0.18.0
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}
# Share repository cache between workflows.
repository-cache: true
- name: Build with Bazel
run: bazel build //...
- name: Test with Bazel
run: bazel test //...
673 changes: 247 additions & 426 deletions MODULE.bazel.lock

Large diffs are not rendered by default.