Skip to content

cppcheck plugin

steps:
  - name: "Create C++ code verification report - cppcheck"
    description: "Check C++ code and generate HTML report"
    plugin:
      name: "cppcheck"
      options:
        # - "-j 2"             # two jobs simultaneously
        # - "--clang=clang-11" # uses clang as analyser
        # - "--bug-hunting"    # useful for code review
        # - "--std=c++11"
      include:
        - "include"
      source:
        - "src"
        - "test"
      platform: "unix64"