Skip to content

chore(deps): update jidicula/clang-format-action action to v4.11.0 #118

chore(deps): update jidicula/clang-format-action action to v4.11.0

chore(deps): update jidicula/clang-format-action action to v4.11.0 #118

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: jidicula/clang-format-action@v4.11.0
with: { clang-format-version: "15" }
build-windows:
runs-on: windows-latest
steps:
- uses: actions/cache@v3
with:
path: |
/Users/runneradmin/AppData/Local/bazelisk
/Users/runneradmin/.cache/bazel-disk-cache
key: ${{runner.os}}-bazel-cache
- uses: actions/checkout@v3
- run: bazel build --config=ci //...
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v3
with:
path: |
~/.cache/bazelisk
~/.cache/bazel-disk-cache
key: ${{runner.os}}-bazel-cache
- uses: actions/checkout@v3
- run: bazel build --config=ci //...