From 7798b15222eac913c07e95a48832ed26eb4fe0d7 Mon Sep 17 00:00:00 2001 From: Matt Craig Date: Sun, 27 Oct 2024 11:37:05 -0500 Subject: [PATCH] Add a github cron job We just got bit by a bug caused by a new release of photutils. Adding a cron job, which will include at least one test with the latest version of dependencies, should help catch this kind of thing in the future. --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14c83b9d..f8d59a7f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,9 @@ on: push: branches: - main + schedule: + # run every Monday at 6am UTC + - cron: '0 6 * * 1' concurrency: group: ${{ github.workflow }}-${{ github.ref }}