From f57c1b3ad431398ea0b19e76cdd2e62f44c2ee92 Mon Sep 17 00:00:00 2001 From: emphoeller <64316195+emphoeller@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:46:32 +0100 Subject: [PATCH] Fix bug --- .github/workflows/static-analysis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 2b25e06..3e50bd9 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -25,8 +25,9 @@ jobs: id: bandit 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' }} + if: | # https://github.com/orgs/community/discussions/25641 + steps.yamllint.outcome != 'success' || + steps.flake8.outcome != 'success' || + steps.bandit.outcome != 'success' ...