We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be09380 commit 2b8389eCopy full SHA for 2b8389e
.github/workflows/clang-format.yml
@@ -0,0 +1,27 @@
1
+---
2
+
3
+name: clang-format style check
4
5
+on: # yamllint disable-line rule:truthy
6
+ push:
7
+ branches: ["main"]
8
+ pull_request:
9
+ # The branches below must be a subset of the branches above
10
11
+ workflow_dispatch:
12
13
+jobs:
14
+ lint:
15
+ name: clang-format style check
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
21
22
+ - name: Install dependencies
23
+ run: |
24
+ clang-format --version
25
26
+ - name: test
27
+ run: make test/styling
0 commit comments