Update cppcheck.yml #7
Workflow file for this run
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 action | |
on: | |
push: | |
jobs: | |
build: | |
name: cppcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: cppcheck | |
shell: bash | |
run: | | |
git clone https://github.com/danmar/cppcheck.git | |
cd cppcheck | |
git fetch --tags | |
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`) | |
echo "Latest release tag: $latest_tag" | |
git checkout $latest_tag | |
make FILESDIR=/usr/local/share/Cppcheck -j8 | |
sudo make install FILESDIR=/usr/local/share/Cppcheck | |
cd .. | |
cppcheck --version | |
cppcheck --enable=warning,portability,performance --language=c --platform=unix32 --std=c99 class/ core/ common/ port/ -i class/template/ port/template/ |