From 92ccb26ebf89cb353c374c8acec1574199758957 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Thu, 4 Nov 2021 16:25:38 -0500 Subject: [PATCH] Run CI tests weekly. This helps identify issues with the library as django and other dependencies release new versions. --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0c82d4ad..7d4cf45f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,11 @@ name: Test -on: [push, pull_request] +on: + push: + pull_request: + schedule: + # Run weekly on Saturday + - cron: '37 3 * * SAT' jobs: mysql: