-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (53 loc) · 1.38 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: check
on:
push:
branches: [ main ]
pull_request:
branches: [ "*" ]
types: [synchronize, opened, reopened, edited]
workflow_dispatch:
jobs:
check-format:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- example: default
errors: 3
- example: format-binary
errors: 2
- example: format-config
errors: 1
- example: format-ignore
errors: 0
steps:
- uses: actions/checkout@v4
- shell: bash
run: |
cd example/${{ matrix.example }}
if bazel build \
--config=clang-format \
--color=yes \
//... 2>&1 | tee log; then
[[ ${{ matrix.errors }} -eq 0 ]]
else
[[ ${{ matrix.errors }} -ne 0 ]]
fi
[[ ${{ matrix.errors }} -eq $(cat log | grep -c "Wclang-format-violations") ]]
fix-format:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- example: default
- example: format-binary
- example: format-config
- example: format-ignore
steps:
- uses: actions/checkout@v4
- run: |
cd example/${{ matrix.example }}
bazel build --config=clang-format-fix
bazel build --config=clang-format