diff --git a/.github/workflows/pvs-studio-static-analysis.yml b/.github/workflows/pvs-studio-static-analysis.yml index 89e6e16cfeb..83043bd9a53 100644 --- a/.github/workflows/pvs-studio-static-analysis.yml +++ b/.github/workflows/pvs-studio-static-analysis.yml @@ -106,11 +106,12 @@ jobs: # - False positives: # V1047 Lifetime of the lambda is greater than lifetime of the local variable captured by reference. # V1076 Code contains invisible characters that may alter its logic. + # V591 Non-void function should return a value. # - name: Filter PVS Log working-directory: ${{ github.workspace }}/Build/${{ env.PVS_STUDIO_ANALYSIS_ARCH }} run: | - pvs-studio-analyzer suppress -v677 -v1061 -v530 -v1047 -v1076 project.plog + pvs-studio-analyzer suppress -v677 -v1061 -v530 -v1047 -v1076 -v591 project.plog pvs-studio-analyzer filter-suppressed project.plog - name: Print PVS Log