#5 Realistic Transparency #15
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: cppcheck | |
on: push | |
jobs: | |
build: | |
if: "!contains(github.event.commits[0].message, '#skipcppcheck')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Checkout cppcheck | |
uses: actions/checkout@v2 | |
with: | |
repository: danmar/cppcheck | |
ref: '2.3' | |
path: './cppcheck' | |
- name: Build cppcheck | |
run: | | |
cd cppcheck | |
mkdir build && cd build | |
cmake .. -DUSE_MATCHCOMPILER=ON | |
make | |
cp -r ../cfg ./bin | |
- name: Run cppcheck | |
run: | | |
cd cppcheck/build/bin | |
./cppcheck ../../../src --enable=all --max-ctu-depth=4 --output-file=../../../cppcheck_report.txt --language=c++ --std=c++17 --suppress=missingIncludeSystem | |
echo ' ' >> ../../../cppcheck_report.txt && ./cppcheck --version >> ../../../cppcheck_report.txt | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: mandyedi | |
author_email: [email protected] | |
message: 'Automated commit: update cppcheck report' | |
add: './cppcheck_report.txt' |