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

This commit is contained in:
Yurii Motov
2026-02-18 23:10:32 +01:00
parent c44158384c
commit 72b4eb142f

View File

@@ -45,7 +45,10 @@ jobs:
test:
needs:
- 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:
matrix:
os: [ windows-latest, macos-latest ]