diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-12-09 17:12:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-09 17:12:09 +0100 |
commit | 1f31eaefc62450116532c6d34d110353f28b914f (patch) | |
tree | 91f01daec0ce8ab951db49eb091c331768a19276 | |
parent | deb20beab710350f9eafefe7781adf1830300868 (diff) | |
download | FlightCore-1f31eaefc62450116532c6d34d110353f28b914f.tar.gz FlightCore-1f31eaefc62450116532c6d34d110353f28b914f.zip |
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.
-rw-r--r-- | .github/workflows/push-test.yml | 6 |
1 files changed, 5 insertions, 1 deletions
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 |