From 7bf808d8aa8435aab6be62c8d5439ecd983f2ebf Mon Sep 17 00:00:00 2001 From: Filip Filmar Date: Thu, 26 Oct 2023 22:03:06 -0700 Subject: [PATCH] Build the project on a weekly schedule This should discover build issues on a weekly schedule. --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 854c85e..02855b2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,9 @@ on: branches: [ master ] pull_request: branches: [ master ] - + schedule: + - cron: "43 17 * * 0" + jobs: test: runs-on: ubuntu-18.04