presubmit run triggered by armandomontanez #7
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: basic | |
run-name: presubmit run triggered by ${{ github.actor }} | |
on: | |
push: | |
branches: | |
- 'fix-bazel-build-2024-10-03' | |
jobs: | |
bazel-build-test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get Bazel | |
uses: bazel-contrib/setup-bazel@0.9.0 | |
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 | |
# Only needed to drive the presbumit scripts. | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Presubmit | |
run: python3 tools/run_all_bazel_checks.py |