mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-19 07:26:36 -05:00
Always run tests on push to master branch and when run by scheduler
This commit is contained in:
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
@@ -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 ]
|
||||
|
||||
Reference in New Issue
Block a user