We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8166dd commit 255ebc5Copy full SHA for 255ebc5
1 file changed
.github/workflows/clang-format.yml
@@ -0,0 +1,19 @@
1
+name: clang-format Check
2
+on: [push, pull_request]
3
+jobs:
4
+ formatting-check:
5
+ name: Formatting Check
6
+ runs-on: ubuntu-latest
7
+ strategy:
8
+ matrix:
9
+ path:
10
+ - 'src'
11
+ - 'examples'
12
+ - 'include'
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Run clang-format style check for C/C++/Protobuf programs.
16
+ uses: jidicula/clang-format-action@v4.13.0
17
+ with:
18
+ clang-format-version: '13'
19
+ check-path: ${{ matrix.path }}
0 commit comments