We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4606c1c commit 91c3115Copy full SHA for 91c3115
.github/workflows/ci.yml
@@ -23,10 +23,8 @@ jobs:
23
- name: Checkout code
24
uses: actions/checkout@v4
25
26
- - name: Install Rust toolchain
27
- uses: dtolnay/rust-toolchain@stable
28
- with:
29
- components: clippy
+ - name: Add clippy component
+ run: rustup component add clippy
30
31
- name: Cache cargo build
32
uses: actions/cache@v4
rust-toolchain.toml
@@ -1,2 +1,3 @@
1
[toolchain]
2
+channel = "1.91.1"
3
components = ["llvm-tools", "rustc-dev", "rust-src"]
0 commit comments