From e98a75c23e5124dce948333ffcd5af014588e6e5 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 nasa#995, Enable cppcheck results output 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..5016ac33f 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