Skip to content

Update Bazel to 7.2.0 (#175) #371

Update Bazel to 7.2.0 (#175)

Update Bazel to 7.2.0 (#175) #371

Workflow file for this run

name: Build workflow
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bazel build
uses: ./.github/actions/bazel
with:
bazel-command: run
bazel-targets: //:buildifier -- --mode=check -r $(pwd)
cache-key: bazel-lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bazel build
uses: ./.github/actions/bazel
with:
bazel-command: build
bazel-targets: //...
cache-key: bazel-build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bazel test
uses: ./.github/actions/bazel
with:
bazel-command: test
bazel-targets: //...
cache-key: bazel-test