Skip to content

Add support for Bazel #2

Add support for Bazel

Add support for Bazel #2

Workflow file for this run

name: test_bazel
on: [push, pull_request]
jobs:
bazel:
strategy:
matrix:
os: [ubuntu-24.04, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/[email protected]
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
- name: Test Main
run : 'bazel test //...'
- name: Test Example
working-directory: examples/bazel
run : 'bazel test //...'