summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-10-26 13:55:12 +0200
committerMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:38:06 +0100
commit41defb0ac1b548cb11160948ecf19ae94f559eb6 (patch)
treef8028ec102a23150cf8209b07f22cc88ce622284
parentb41ad8cf86f685dc26ee8b72065546bbeabcf032 (diff)
Only run clippy with MSRV toolchain
The comment says it all. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index e1cbe3c..c15b40d 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -101,8 +101,12 @@ jobs:
strategy:
matrix:
rust:
+ # We run clippy only with our MSRV
+ # Running newer clippy (or even from the current stable channel) would
+ # randomly "break" our CI when the toolchain gets published in a new
+ # version. So there's no point in running it with two or more
+ # versions, MSRV should be fine.
- 1.70.0
- - 1.73.0
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1