Skip to content

Commit

Permalink
chore: multiline if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon authored Jul 30, 2024
1 parent 5bde22e commit c9d523f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
integration:
name: integration tests
# run integration tests on all builds except pull requests from forks or dependabot
if: github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
if: |
github.event_name != 'pull_request' ||
(github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down

0 comments on commit c9d523f

Please sign in to comment.