-
Notifications
You must be signed in to change notification settings - Fork 3
35 lines (29 loc) · 1.06 KB
/
Copy pathformatting.yml
File metadata and controls
35 lines (29 loc) · 1.06 KB
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
name: Code Formatting
on:
push:
branches: [main, development]
pull_request:
branches: [main, development]
jobs:
format:
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- name: Install clang-format
run: brew install clang-format || true
# Fail loudly if clang-format is missing — otherwise the check below
# would pass vacuously on empty output.
- name: Verify clang-format is available
run: clang-format --version
# The \( ... \) grouping matters: without it, -print0 binds only to
# the *.h branch and .c files are never checked.
- name: Check C formatting
run: |
misformatted=$(find . \( -name '*.c' -o -name '*.h' \) -print0 | xargs -0 clang-format -style=file -output-replacements-xml | grep "<replacement " || true)
if [ -n "$misformatted" ]; then
echo "ERROR: Some files are not properly formatted. Run clang-format -i."
exit 1
else
echo "All files are properly formatted."
exit 0
fi