Print clang-format version in CI

This commit is contained in:
luisangelsm
2026-03-05 09:48:21 +01:00
parent 46661becaf
commit df03b1c6b0

View File

@ -45,6 +45,9 @@ jobs:
- name: Install dependencies
run: brew install clang-format
- name: Print clang-format version
run: clang-format --version
- name: Run clang-format
run: |
find . \( -name '*.h' -or -name '*.cpp' -or -name '*.c' -or -name '*.mm' -or -name '*.m' \) -print0 | xargs -0 clang-format -style=file -i