diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 56976e943..741cab037 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -19,6 +19,15 @@ jobs: codacy-security-scan: name: Codacy Security Scan runs-on: ubuntu-latest + strategy: + matrix: + # List of Codacy-supported tools: https://docs.codacy.com/repositories-configure/codacy-configuration-file/#which-tools-can-be-configured-and-which-name-should-i-use%20%20tool-timeout: + tool: [ + cppcheck, # static analysis of C/C++ code + flawfinder, # a static analysis tool for finding vulnerabilities in C/C++ source code + markdownlint, # A Node.js style checker and lint tool for Markdown/CommonMark files + pmd, # includes CPD, the copy-paste-detector. CPD finds duplicated code in C/C++, etc + ] steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code