From 49950cb89ae9d5be3394f13661e612438f9c5e88 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 22 Mar 2024 15:39:35 -0500 Subject: [PATCH] Restore weekly CI job Restores d3d21ae9e816500154798d254422ac30e6bbee0f after it was dropped as part of 058666e330c05ac7458ac9c33a62edeff278c115. --- .github/workflows/ci.yaml | 1 + .github/workflows/scheduled.yaml | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .github/workflows/scheduled.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ec45193e..edc6f422 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,6 +5,7 @@ on: # yamllint disable-line rule:truthy push: branches: ['master'] pull_request: + workflow_call: jobs: pytest: diff --git a/.github/workflows/scheduled.yaml b/.github/workflows/scheduled.yaml new file mode 100644 index 00000000..01d91dee --- /dev/null +++ b/.github/workflows/scheduled.yaml @@ -0,0 +1,11 @@ +--- +name: Run tests periodically + +on: # yamllint disable-line rule:truthy + pull_request: + schedule: + - cron: '40 7 * * 0' + +jobs: + pytest: + uses: ./.github/workflows/ci.yaml