Skip to content

ci: fixup

ci: fixup #10

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: Install Bazel
run: |
brew update
brew unlink bazelisk
brew install bazel
- 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
...