Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 10 additions & 0 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Scheduled Tests

on:
schedule:
- cron: '0 14 * * *' # Run daily at 14:00 UTC

jobs:
tests:
if: github.repository_owner == 'pytest-dev'
uses: ./.github/workflows/tests.yml
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ on:
branches:
- master

schedule:
- cron: '0 14 * * *' # Run daily at 14:00 UTC

pull_request:
workflow_call:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down