Skip to content

Commit 818902f

Browse files
committed
#25 fixes after resctructions
1 parent 5e3915e commit 818902f

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/codeChecks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ jobs:
6969
- name: Check for suspect words
7070
# This step checks for suspect words in the codebase
7171
run: |
72-
python3 ./scripts/check_suspect_words.py "./src" --marker-file ./scripts/check_suspect_words.txt > ./suspect-words-report.txt
73-
#python3 ./scripts/check_suspect_words.py "./tools" --marker-file ./scripts/check_suspect_words.txt >> ./suspect-words-report.txt
74-
python3 ./scripts/check_suspect_words.py "./tests" --marker-file ./scripts/check_suspect_words.txt >> ./suspect-words-report.txt
72+
python3 ./tools/check_suspect_words.py "./src" --marker-file ./tools/check_suspect_words.txt > ./suspect-words-report.txt
73+
#python3 ./tools/check_suspect_words.py "./tools" --marker-file ./tools/check_suspect_words.txt >> ./suspect-words-report.txt
74+
python3 ./tools/check_suspect_words.py "./tests" --marker-file ./tools/check_suspect_words.txt >> ./suspect-words-report.txt
7575
- name: Upload suspect words report to git hub storage to use later
7676
uses: actions/upload-artifact@v4
7777
with:
@@ -81,9 +81,9 @@ jobs:
8181
- name: Check for boilerplate code
8282
# This step checks for boilerplate code in the codebase
8383
run: |
84-
python3 ./scripts/check_boilerplate.py --src "./src" --boilerplate ./scripts/check_boilerplate.txt > ./boilerplate-report.txt
85-
#python3 ./scripts/check_boilerplate.py --src "./tools" --boilerplate ./scripts/check_boilerplate.txt >> ./boilerplate-report.txt
86-
python3 ./scripts/check_boilerplate.py --src "./tests" --boilerplate ./scripts/check_boilerplate.txt >> ./boilerplate-report.txt
84+
python3 ./tools/check_boilerplate.py --src "./src" --boilerplate ./tools/check_boilerplate.txt > ./boilerplate-report.txt
85+
#python3 ./tools/check_boilerplate.py --src "./tools" --boilerplate ./tools/check_boilerplate.txt >> ./boilerplate-report.txt
86+
python3 ./tools/check_boilerplate.py --src "./tests" --boilerplate ./tools/check_boilerplate.txt >> ./boilerplate-report.txt
8787
- name: Upload boilerplate report to git hub storage to use later
8888
uses: actions/upload-artifact@v4
8989
with:
@@ -93,9 +93,9 @@ jobs:
9393
- name: Check for large files
9494
# This step checks for large files in the codebase
9595
run: |
96-
python3 ./scripts/check_file_size.py "./src" 500 "//" .cpp .h > ./file-size-report.txt
97-
#python3 ./scripts/check_file_size.py "./tools" 500 "#" .py >> ./file-size-report.txt
98-
python3 ./scripts/check_file_size.py "./tests" 500 "//" .cpp .h >> ./file-size-report.txt
96+
python3 ./tools/check_file_size.py "./src" 500 "//" .cpp .h > ./file-size-report.txt
97+
#python3 ./tools/check_file_size.py "./tools" 500 "#" .py >> ./file-size-report.txt
98+
python3 ./tools/check_file_size.py "./tests" 500 "//" .cpp .h >> ./file-size-report.txt
9999
- name: Upload file size report to git hub storage to use later
100100
uses: actions/upload-artifact@v4
101101
with:

0 commit comments

Comments
 (0)