Skip to content

exclude third_party folder from cppcheck #8

exclude third_party folder from cppcheck

exclude third_party folder from cppcheck #8

Workflow file for this run

name: Cppcheck
on:
push:
pull_request:
jobs:
cppcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install cppcheck
run: sudo apt-get install -y cppcheck
- name: Run cppcheck
run: cppcheck --version && cppcheck --exclude=./../../src/third_party . --error-exitcode=1