We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5342950 commit 8afc6a7Copy full SHA for 8afc6a7
.github/workflows/ci.yml
@@ -167,12 +167,6 @@ jobs:
167
matrix:
168
rust: [nightly, beta, stable]
169
170
- - name: Cache cargo registry
171
- uses: actions/cache@v2
172
- with:
173
- path: ~/.cargo/registry
174
- key: wasm32-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
175
-
176
steps:
177
- uses: actions/checkout@master
178
@@ -183,6 +177,12 @@ jobs:
183
target: wasm32-unknown-unknown
184
override: true
185
179
180
+ - name: Cache cargo registry
181
+ uses: actions/cache@v2
182
+ with:
+ path: ~/.cargo/registry
+ key: wasm32-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
+
186
- name: check
187
uses: actions-rs/cargo@v1
188
with:
0 commit comments