From 299725fe2e91f43a116e74297ec17b54b75f272f Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Tue, 28 May 2024 18:01:00 -0700 Subject: [PATCH] Update build.yml (#8321) Add a scheduled cron job to run all the main tests at 4:45 A.M. to catch dependency regressions. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cfa56a8c8..b501bdfc9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,9 @@ on: pull_request: branches: - master + schedule: + # Run daily at 4:45 A.M. to catch dependencies that break us. + - cron: '45 4 * * *' jobs: build-linux: