From ea48838719a92da0a6b1dcf3257541684f39a5f9 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Mon, 19 Dec 2022 22:38:59 +0400 Subject: [PATCH] Set daily schedule for running test jobs This way we will quickly notice when a point release in Python, DRF or Django makes DJA fail. --- .github/workflows/tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 75573cb7..a22301fe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,5 +1,11 @@ name: Tests -on: [push, pull_request] +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + schedule: + - cron: '0 4 * * *' jobs: test: