summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-01-22 07:22:15 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-01-22 07:22:15 -0500
commitac0df39e92b34eb2fabffcac59a4b811b452e58b (patch)
treeedf2db9f472cd44ba4fe2f36023325c89c9d23c8
parent5fc8f8404bbb879e1c6669e697793259622ebf4a (diff)
downloadpython-coveragepy-git-ac0df39e92b34eb2fabffcac59a4b811b452e58b.tar.gz
build: correct the cron time of the Python nightly tests
-rw-r--r--.github/workflows/python-nightly.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/python-nightly.yml b/.github/workflows/python-nightly.yml
index 1bd83737..58b18d3f 100644
--- a/.github/workflows/python-nightly.yml
+++ b/.github/workflows/python-nightly.yml
@@ -5,9 +5,10 @@ name: "Python Nightly Tests"
on:
schedule:
- # Run at 2:22am early Saturday morning https://crontab.guru/#22_2_*_*_6
+ # Run at 2:22am early Saturday morning Eastern time (6/7:22 UTC)
# so that we get tips of CPython development tested.
- - cron: "22 2 * * 6"
+ # https://crontab.guru/#22_7_*_*_6
+ - cron: "22 7 * * 6"
workflow_dispatch:
defaults: