Skip to content

Commit 048411e

Browse files
committed
#19 removed unwanted param
1 parent b0a5f8a commit 048411e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/codeChecks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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" --max-lines 500 "//" .cpp .h > ./file-size-report.txt
97-
#python3 ./scripts/check_file_size.py "./scripts" --max-lines 500 "#" .py >> ./file-size-report.txt
98-
python3 ./scripts/check_file_size.py "./test" --max-lines 500 "//" .cpp .h >> ./file-size-report.txt
96+
python3 ./scripts/check_file_size.py "./src" 500 "//" .cpp .h > ./file-size-report.txt
97+
#python3 ./scripts/check_file_size.py "./scripts" 500 "#" .py >> ./file-size-report.txt
98+
python3 ./scripts/check_file_size.py "./test" 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)