From 4b53ffbb668659488030d8e222de20963917e590 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sat, 11 Dec 2021 13:48:59 -0800 Subject: [PATCH] Add weekly Saturday morning build and prevent Python 3.11 from running on PRs --- .github/workflows/testing.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 27d839f2..fe937e55 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -19,6 +19,8 @@ on: - 'poetry.lock' - 'pyproject.toml' - '.github/workflows/testing.yaml' + schedule: + - cron: '0 0 * * SAT' defaults: run: @@ -27,7 +29,8 @@ defaults: jobs: test: if: > - ! contains(github.event.head_commit.message, '[ci skip]') + ! contains(github.event.head_commit.message, '[ci skip]') > + && (matrix.python-version != '3.11-dev' || github.event_name == 'schedule') runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.python-version == '3.11-dev' }} strategy: