We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rustc -V
1 parent 8b177ea commit 7a357caCopy full SHA for 7a357ca
.github/workflows/ci.yml
@@ -87,6 +87,13 @@ jobs:
87
restore-keys: |
88
${{ runner.os }}-cargo-
89
90
+ - name: Install Rust
91
+ run: |
92
+ rustup set profile minimal
93
+ # Pin to older version until a clippy regression is fixed
94
+ rustup update 1.53.0
95
+ rustup default 1.53.0
96
+
97
- id: rustc
98
run:
99
echo "::set-output name=version::$(rustc -V)"
@@ -99,13 +106,6 @@ jobs:
106
100
107
v2-${{ runner.os }}-cargo-clippy-${{ steps.rustc.outputs.version }}-
101
108
102
- - name: Install Rust
103
- run: |
104
- rustup set profile minimal
105
- # Pin to older version until a clippy regression is fixed
- rustup update 1.53.0
- rustup default 1.53.0
-
109
- run: rustup component add rustfmt
110
- run: rustup component add clippy
111
0 commit comments