From 0cf87e182aea8a8e6d6051bc9d82b17c8a0a0991 Mon Sep 17 00:00:00 2001 From: Joe Wallwork Date: Wed, 7 Feb 2024 07:53:01 +0000 Subject: [PATCH 1/2] #55: Rename build.yml as test_suite.yml --- .github/workflows/{build.yml => test_suite.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{build.yml => test_suite.yml} (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/test_suite.yml similarity index 100% rename from .github/workflows/build.yml rename to .github/workflows/test_suite.yml From 3a2d9145112e9cae87969dfba00b4fc3e49f8e4a Mon Sep 17 00:00:00 2001 From: Joe Wallwork Date: Wed, 7 Feb 2024 07:53:22 +0000 Subject: [PATCH 2/2] #55: Add comments and cron job for test suite --- .github/workflows/test_suite.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_suite.yml b/.github/workflows/test_suite.yml index a92a3ad..87ba3dc 100644 --- a/.github/workflows/test_suite.yml +++ b/.github/workflows/test_suite.yml @@ -1,12 +1,18 @@ name: Build Movement on: - # Push to main or PR + # Run test suite whenever main is updated push: branches: - main + + # Run test suite whenever commits are pushed to an open PR pull_request: + # Run test suite every Sunday at 1AM + schedule: + - cron: '0 1 * * 0' + jobs: build: name: "Build Movement"