Skip to content

pw_env_setup: Update clang next version #21

pw_env_setup: Update clang next version

pw_env_setup: Update clang next version #21

Workflow file for this run

name: bazel-noenv
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/[email protected]
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 ...