Update RELEASING.md #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bazel Tests | |
on: [push] | |
jobs: | |
bazel-test: | |
name: Bazel tests | |
runs-on: macos-latest | |
steps: | |
- uses: bazel-contrib/setup-bazel@0.9.1 | |
with: | |
bazelisk-cache: true | |
disk-cache: ${{ github.workflow }} | |
repository-cache: true | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Build everything | |
run: bazel build //... | |
- name: Run tests | |
run: bazel test //... |