Skip to content

Commit a1aa33c

Browse files
committed
update static analysis to not be recursive and to do exhaustive check by default
1 parent 42a019c commit a1aa33c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/static_analysis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
steps:
1515
- name: Checkout repo
1616
uses: actions/checkout@v4
17-
with:
18-
submodules: 'recursive'
1917

2018
- name: Run static analysis
2119
uses: esp-cpp/StaticAnalysis@master
@@ -27,4 +25,4 @@ jobs:
2725
esp_idf_version: release/v5.4
2826

2927
# (Optional) cppcheck args
30-
cppcheck_args: -i$GITHUB_WORKSPACE/components/espp --force --enable=all --inline-suppr --inconclusive --platform=mips32 --std=c++17 --suppressions-list=$GITHUB_WORKSPACE/suppressions.txt
28+
cppcheck_args: --check-level=exhaustive --force --enable=all --inline-suppr --inconclusive --platform=mips32 --std=c++17 --suppressions-list=$GITHUB_WORKSPACE/suppressions.txt

0 commit comments

Comments
 (0)