From 0e79ccd937710a3444739a0e6c2497314e4d610b Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" <59618057+astrogeco@users.noreply.github.com> Date: Mon, 10 May 2021 22:24:43 -0400 Subject: [PATCH] Fix #995, Enable visual inspection of cppcheck results Removes --quiet option from cppcheck workflow --- .github/workflows/static-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index b81b11aa5..386c629ad 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -32,7 +32,7 @@ jobs: - name: Run bundle cppcheck if: ${{matrix.cppcheck =='all'}} - run: cppcheck --force --inline-suppr --quiet . 2> ${{matrix.cppcheck}}_cppcheck_err.txt + run: cppcheck --force --inline-suppr. 2> ${{matrix.cppcheck}}_cppcheck_err.txt # Run strict static analysis for embedded portions of osal - name: osal strict cppcheck