Skip to content

Commit 41defb0

Browse files
committed
Only run clippy with MSRV toolchain
The comment says it all. Signed-off-by: Matthias Beyer <[email protected]>
1 parent b41ad8c commit 41defb0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/msrv.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,12 @@ jobs:
101101
strategy:
102102
matrix:
103103
rust:
104+
# We run clippy only with our MSRV
105+
# Running newer clippy (or even from the current stable channel) would
106+
# randomly "break" our CI when the toolchain gets published in a new
107+
# version. So there's no point in running it with two or more
108+
# versions, MSRV should be fine.
104109
- 1.70.0
105-
- 1.73.0
106110
steps:
107111
- name: Checkout sources
108112
uses: actions/[email protected]

0 commit comments

Comments
 (0)