Skip to content

Update cppcheck.yml

Update cppcheck.yml #5

Workflow file for this run

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
cppcheck --version
cppcheck --enable=warning,portability,performance --language=c --platform=unix32 --std=c99 class/ core/ common/ port/