We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 763f275 commit 58ec66dCopy full SHA for 58ec66d
.github/workflows/clang-format.yml
@@ -0,0 +1,17 @@
1
+name: test-clang-format
2
+on: [push,pull_request]
3
+
4
+jobs:
5
+ clang-format-checking:
6
+ runs-on: ubuntu-latest
7
+ permissions:
8
+ contents: read
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: DoozyX/clang-format-lint-action@v0.20
12
+ with:
13
+ source: "."
14
+ exclude: "tests"
15
+ extensions: 'h,cpp'
16
+ style: file
17
+ clangFormatVersion: 20
0 commit comments