Skip to content

Commit 52fbc3d

Browse files
committed
fix: clang-tidy updated for yml
1 parent 38e7f77 commit 52fbc3d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.clang-tidy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Checks: >
22
readability-identifier-naming
3+
-clang-diagnostic-sign-compare
34
45
HeaderFilterRegex: '(SourceCodes/.*|Headers/.*|Tests/.*)'
56

.github/workflows/dsa-ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
run: |
3131
echo "Running Clang-Tidy..."
3232
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
33+
# Fail pipeline if any warning occurs
34+
continue-on-error: false
3435

3536
- name: Build
3637
run: cmake --build build

0 commit comments

Comments
 (0)