We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaacc0f commit 664bb2cCopy full SHA for 664bb2c
.github/workflows/cron.yml
@@ -0,0 +1,10 @@
1
+name: Scheduled Tests
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 14 * * *' # Run daily at 14:00 UTC
6
7
+jobs:
8
+ tests:
9
+ if: github.repository_owner == 'pytest-dev'
10
+ uses: ./.github/workflows/tests.yml
.github/workflows/tests.yml
@@ -5,10 +5,8 @@ on:
branches:
- master
- schedule:
- - cron: '0 14 * * *' # Run daily at 14:00 UTC
-
11
pull_request:
+ workflow_call:
12
13
concurrency:
14
group: ${{ github.workflow }}-${{ github.ref }}
0 commit comments