Skip to content

Commit 13f87b1

Browse files
committed
core: ci-cd file name fix
1 parent 07aab74 commit 13f87b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.clang-tidy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Checks: >
33
44
WarningsAsErrors: '*'
55

6-
HeaderFilterRegex: '(SourceCodes/.*|Headers/.*)'
6+
HeaderFilterRegex: '(Headers/.*|SourceCodes/.*)'
77

88
CheckOptions:
99
# Private member variables

.github/workflows/dsa-ci.yaml renamed to .github/workflows/datastructures-algorithms-ci-cd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: datastructures-algorithms-CI-CD-flow
1+
name: datastructures-algorithms-ci-cd
22

33
on:
44
push:
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Run clang-tidy
2626
run: |
27-
find SourceCodes Headers -name '*.cpp' -o -name '*.cc' -o -name '*.cxx' -o -name '*.h' | \
27+
find Headers -name '*.h' -o -name '*.hpp' ; find SourceCodes -name '*.cpp' -o -name '*.cc' -o -name '*.cxx' | \
2828
xargs clang-tidy -p build --warnings-as-errors=*
2929
3030
- name: Build

0 commit comments

Comments
 (0)