diff options
-rw-r--r-- | .github/workflows/testsuite.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index f04699ad..05bfadd5 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -10,6 +10,10 @@ on: - nedbat/* pull_request: workflow_dispatch: + schedule: + # Run at 2:22am early Saturday morning https://crontab.guru/#22_2_*_*_6 + # so that we get tip of CPython tested. + - cron: "22 2 * * 6" defaults: run: @@ -40,6 +44,7 @@ jobs: - "3.9" - "3.10" - "3.11.0-alpha.2" + - "3.11-dev" - "pypy-3.7" exclude: # Windows PyPy doesn't seem to work? |