Skip to content

add check workflow

add check workflow #12

Workflow file for this run

name: check
on:
push:
branches: [ main ]
pull_request:
branches: [ "*" ]
types: [synchronize, opened, reopened, edited]
workflow_dispatch:
jobs:
check-format:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- example: default
errors: 3
- example: format-binary
errors: 2
- example: format-config
errors: 0
- example: format-ignore
errors: 0
steps:
- uses: actions/checkout@v4

Check failure on line 26 in .github/workflows/check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/check.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- run: |
cd example/${{ matrix.example }}
bazel build \
--config=clang-format \
--color=yes \
//... 2>&1 | tee log
[ $(cat log | grep -c "Wclang-format-violations") -eq ${{ matrix.errors }} ]