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 d62392c commit 9a6549b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
continue-on-error: true
- run: 'false' # Fail the workflow if one of the analyzers complained

Check warning on line 27 in .github/workflows/static-analysis.yml

View workflow job for this annotation

GitHub Actions / static-analysis

27:22 [comments] too few spaces before comment
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' }}
...

0 comments on commit 9a6549b

Please sign in to comment.