|
|
@ -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 ] |
|
|
|