ci: add static analysis action #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static analysis | |
on: [pull_request] | |
jobs: | |
static_analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Run static analysis | |
uses: esp-cpp/StaticAnalysis@master | |
with: | |
# only analyze changes in this PR (not recommended, since changed code | |
# can affect other code in the repo); We may turn this on since we have | |
# analyzed the rest of the code and the analysis takes a _long_ time | |
# (>20 minutes) | |
report_pr_changes_only: false | |
# Do not build the project and do not use cmake to generate compile_commands.json | |
use_cmake: false | |
# Use the 5.2 release version since it's what we build with | |
esp_idf_version: release/v5.2 | |
# (Optional) cppcheck args | |
cppcheck_args: -i$GITHUB_WORKSPACE/lib -i$GITHUB_WORKSPACE/external -i$GITHUB_WORKSPACE/components/esp_littlefs -i$GITHUB_WORKSPACE/components/lvgl -i$GITHUB_WORKSPACE/components/esp-dsp --force --enable=all --inline-suppr --inconclusive --platform=mips32 --suppressions-list=$GITHUB_WORKSPACE/suppressions.txt |