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 38e7f77 commit 52fbc3dCopy full SHA for 52fbc3d
.clang-tidy
@@ -1,5 +1,6 @@
1
Checks: >
2
readability-identifier-naming
3
+ -clang-diagnostic-sign-compare
4
5
HeaderFilterRegex: '(SourceCodes/.*|Headers/.*|Tests/.*)'
6
.github/workflows/dsa-ci.yaml
@@ -30,7 +30,8 @@ jobs:
30
run: |
31
echo "Running Clang-Tidy..."
32
find SourceCodes Headers Tests -name '*.cpp' -o -name '*.h' | xargs clang-tidy -p build
33
- continue-on-error: false # Fail pipeline if any warning occurs
+ # Fail pipeline if any warning occurs
34
+ continue-on-error: false
35
36
- name: Build
37
run: cmake --build build
0 commit comments