diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 8c443b9..043233e 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -26,7 +26,7 @@ jobs: continue-on-error: true - run: 'false' # Fail the workflow if one of the analyzers complained if: > - ${{ steps.yamllint.outcome != success || steps.flake8.outcome != - success || steps.bandit.outcome != success }} + ${{ steps.yamllint.outcome != 'success' || steps.flake8.outcome != + 'success' || steps.bandit.outcome != 'success' }} ...