Skip to content

fix: ensure summary is always displayed before exit #155

fix: ensure summary is always displayed before exit

fix: ensure summary is always displayed before exit #155

Workflow file for this run

name: Static Analysis
on:
push:
branches: [ "master", "main", "devin/*" ]
pull_request:
jobs:
cppcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y gcc-multilib g++-multilib cppcheck
- name: Configure CMake
run: cmake -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: Build
run: cmake --build build
- name: Run cppcheck
shell: bash
run: |
chmod +x ./scripts/run_cppcheck.sh
./scripts/run_cppcheck.sh