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 07aab74 commit 13f87b1Copy full SHA for 13f87b1
.clang-tidy
@@ -3,7 +3,7 @@ Checks: >
3
4
WarningsAsErrors: '*'
5
6
-HeaderFilterRegex: '(SourceCodes/.*|Headers/.*)'
+HeaderFilterRegex: '(Headers/.*|SourceCodes/.*)'
7
8
CheckOptions:
9
# Private member variables
.github/workflows/dsa-ci.yaml renamed to .github/workflows/datastructures-algorithms-ci-cd.yaml
@@ -1,4 +1,4 @@
1
-name: datastructures-algorithms-CI-CD-flow
+name: datastructures-algorithms-ci-cd
2
on:
push:
@@ -24,7 +24,7 @@ jobs:
24
25
- name: Run clang-tidy
26
run: |
27
- find SourceCodes Headers -name '*.cpp' -o -name '*.cc' -o -name '*.cxx' -o -name '*.h' | \
+ find Headers -name '*.h' -o -name '*.hpp' ; find SourceCodes -name '*.cpp' -o -name '*.cc' -o -name '*.cxx' | \
28
xargs clang-tidy -p build --warnings-as-errors=*
29
30
- name: Build
0 commit comments