We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a1f25 commit 22983e0Copy full SHA for 22983e0
1 file changed
.github/workflows/cpp-linter.yml
@@ -18,13 +18,17 @@ jobs:
18
19
- uses: actions/checkout@v5
20
21
+ - name: run cmake
22
+ run: |
23
+ cmake -Bbuild -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON .
24
+
25
- name: C/C++ Linter
26
uses: cpp-linter/cpp-linter-action@v2.16.5
27
id: linter
28
env:
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
with:
31
version: 21
- extra-args: '-std=c++17'
32
+ database: build
33
style: '' # disable clang-format checks.
34
tidy-checks: '' # Use .clang-tidy config file.
0 commit comments