Browse Source

Simplify condition

pull/14940/head
Motov Yurii 5 months ago
committed by GitHub
parent
commit
944a501c67
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      .github/workflows/test.yml

5
.github/workflows/test.yml

@ -45,10 +45,7 @@ jobs:
test:
needs:
- changes
if: |
needs.changes.outputs.src == 'true' ||
github.event_name == 'schedule' ||
(github.event_name == 'push' && github.ref == 'refs/heads/master')
if: needs.changes.outputs.src == 'true' || github.ref == 'refs/heads/master'
strategy:
matrix:
os: [ windows-latest, macos-latest ]

Loading…
Cancel
Save