Skip to content

bazel update

bazel update #21

Workflow file for this run

# ref: https://github.com/actions/runner-images
name: amd64 MacOS
on: [push, pull_request, workflow_dispatch]
# Building using the github runner environement directly.
jobs:
native:
name: MacOS • Bazel
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Check Bazel
run: bazel version
- name: Build
run: >
bazel build
-c opt
--subcommands=pretty_print
...
- name: Test
run: >
bazel test
-c opt
--test_output=errors
...