Skip to content

Commit 47efbb8

Browse files
committed
update:cppcheck.yml
1 parent f866d6e commit 47efbb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cppcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
- name: Run Cppcheck
2626
run: |
2727
sudo apt-get install -y cppcheck
28-
cppcheck --enable=all --inconclusive --force --language=c++ ../../XEngine_Source/ &> static_analysis/cppcheck.txt
28+
cppcheck --enable=all --language=c++ --std=c++20 ../../XEngine_Source/ --output-file=static_analysis/log.xml --xml
2929
continue-on-error: true
3030

3131
- name: Upload Cppcheck Results
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: cppcheck_results
35-
path: static_analysis/cppcheck.txt
35+
path: static_analysis/log.xml

0 commit comments

Comments
 (0)