Browse Source

Always run tests on push to `master` branch and when run by scheduler

pull/14940/head
Yurii Motov 5 months ago
parent
commit
72b4eb142f
  1. 5
      .github/workflows/test.yml

5
.github/workflows/test.yml

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

Loading…
Cancel
Save