Skip to content

Commit

Permalink
Test action
Browse files Browse the repository at this point in the history
  • Loading branch information
emphoeller committed Mar 27, 2024
1 parent c00f3a9 commit 55f0632
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 @@ -15,7 +15,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-python@v5
- run: pip install yamllint flake8 bandit
- run: yamllint -s roles/ .github/workflows/
- run: yamllint roles/ .github/workflows/
id: yamllint
continue-on-error: true
- run: flake8 roles/
Expand All @@ -25,6 +25,6 @@ jobs:
id: bandit
continue-on-error: true
- run: 'false' # Fail the workflow if one of the analyzers complained
if: ${{ steps.flake8.outcome != 'success' }}
if: ${{ steps.yamllint.outcome != 'success' || steps.flake8.outcome != 'success' || steps.bandit.outcome != 'success' }}

Check failure on line 28 in .github/workflows/static-analysis.yml

View workflow job for this annotation

GitHub Actions / static-analysis

28:81 [line-length] line too long (128 > 80 characters)

...

0 comments on commit 55f0632

Please sign in to comment.