blob: 57f0b583c32134c0bfe1ce63edf9e63ce42382a9 [file] [log] [blame]
name: basic
run-name: presubmit run triggered by ${{ github.actor }}
on: [push]
jobs:
bazel-build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Get Bazel
uses: bazel-contrib/setup-bazel@0.8.1
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: Bazel Build
run: bazel build ...
- name: Bazel Test
run: bazel test ...