From 1f31eaefc62450116532c6d34d110353f28b914f Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Mon, 9 Dec 2024 17:12:09 +0100 Subject: ci: Run CI weekly to cover Rust toolchain updates (#1052) Rust toolchain updates every six weeks including clippy. With new updates clippy can cover more cases that it previously missed so with weekly CI runs we can catch these cases and fix them in a timely manner. --- .github/workflows/push-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 6fd267b1..bea15cab 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -1,5 +1,9 @@ name: "test-on-push" -on: [push, pull_request] +on: + push: + pull_request: + schedule: + - cron: "0 0 * * 0" # Run weekly to cover rust toolchain updates jobs: # Ensure version numbers in various places match up -- cgit v1.2.3