Fix trash bug: When deleting partition, delete all trace node #772
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Checker | |
on: pull_request | |
jobs: | |
cppcheck: | |
name: CppCheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chmorgan/[email protected] | |
with: | |
enable: all | |
std: c++11 | |
inconclusive: disable | |
output_file: ./cppcheck_report.txt | |
other_options: "-j4 --suppressions-list=util/cppcheck/cppcheck.suppressions --error-exitcode=1 -itest -icurvefs/test -inebd/test -inbd/test -icurvefs_python -icurvesnapshot_python -ithirdparties" | |
- name: Show cppcheck report | |
if: failure() | |
run: | | |
cat ./cppcheck_report.txt | |
exit 1 |