From 5cc0ddfc9e0bfde7170f36d69a8a6be55cf5b4a4 Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Tue, 23 Jul 2024 15:08:05 +0300 Subject: [PATCH] Run tests weekly [skip ci] In order to catch breakages caused by supporting dependencies changing (e.g. the recent issues caused by CMake 3.30.0 and Abseil), run the full test suite every Thursday morning. We avoid running on the hour as that is the busiest time for GitHub Actions (see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule). --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 252594b..bda8142 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,6 +10,8 @@ on: branches: - main pull_request: + schedule: + - cron: "30 4 * * 4" env: RUBYOPT: "--enable-frozen-string-literal --debug-frozen-string-literal"