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 f866d6e commit 47efbb8Copy full SHA for 47efbb8
.github/workflows/cppcheck.yml
@@ -25,11 +25,11 @@ jobs:
25
- name: Run Cppcheck
26
run: |
27
sudo apt-get install -y cppcheck
28
- cppcheck --enable=all --inconclusive --force --language=c++ ../../XEngine_Source/ &> static_analysis/cppcheck.txt
+ cppcheck --enable=all --language=c++ --std=c++20 ../../XEngine_Source/ --output-file=static_analysis/log.xml --xml
29
continue-on-error: true
30
31
- name: Upload Cppcheck Results
32
uses: actions/upload-artifact@v4
33
with:
34
name: cppcheck_results
35
- path: static_analysis/cppcheck.txt
+ path: static_analysis/log.xml
0 commit comments