Skip to content
Open
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ env:

jobs:
test:
# Run scheduled jobs only on the main repository (disable cron on forks)
if: ${{ github.repository_owner == 'fastapi' || github.event_name != 'schedule' }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
Expand Down Expand Up @@ -135,7 +137,7 @@ jobs:

# https://github.com/marketplace/actions/alls-green#why
alls-green: # This job does nothing and is only used for the branch protection
if: always()
if: always() && (github.repository_owner == 'fastapi' || github.event_name != 'schedule')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can revert this line and leave only the change above.

Copy link
Member Author

@YuriiMotov YuriiMotov Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, yes - as it depends on coverage-combine that depends on test, we don't need to duplicate this here.
Reverted!

needs:
- coverage-combine
runs-on: ubuntu-latest
Expand Down
Loading