Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
emphoeller committed Mar 27, 2024
1 parent 9141f03 commit f57c1b3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
...

0 comments on commit f57c1b3

Please sign in to comment.