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 fd74751 commit 04a381dCopy full SHA for 04a381d
.github/workflows/pipeline.yml
@@ -25,6 +25,8 @@ jobs:
25
cc: clang-16
26
llvm_version: 16
27
28
+ env:
29
+
30
steps:
31
- uses: actions/checkout@v4
32
@@ -126,6 +128,9 @@ jobs:
126
128
- cxx: clang++
127
129
cc: clang
130
131
132
+ BUILD_TYPE: ${{matrix.build_type}}
133
134
135
136
@@ -173,3 +178,15 @@ jobs:
173
178
- name: Test format with clang format
174
179
run: ./scripts/fmt.sh
175
180
181
+ clang-tidy-check:
182
+ runs-on: ubuntu-latest
183
184
+ steps:
185
+ - uses: actions/checkout@v4
186
187
+ - name: Make build directory
188
+ run: cmake -Bbuild -H$GITHUB_WORKSPACE
189
190
+ - name: Run clang-tidy check
191
+ run: cmake --build build --target clang-tidy-check
192
0 commit comments