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.
1 parent 4952d8c commit de8456aCopy full SHA for de8456a
.github/workflows/ci.yml
@@ -291,14 +291,22 @@ jobs:
291
make install
292
ls -al $HOME/extern/*
293
294
- - name: Cache Rust
+ - name: Cache Cargo
295
uses: actions/cache@v2
296
with:
297
path: |
298
- ~/.cargo/
299
- target/
+ ~/.cargo/bin/
+ ~/.cargo/registry/index/
300
+ ~/.cargo/registry/cache/
301
+ ~/.cargo/git/db/
302
key: cargo-${{ matrix.name }}-${{ hashFiles('**/Cargo.toml') }}
303
304
+ - name: Cache Rust Target
305
+ uses: actions/cache@v2
306
+ with:
307
+ path: target/
308
+ key: rust-${{ matrix.name }}-${{ hashFiles('**/Cargo.toml') }}
309
+
310
- name: Install Rust toolchain
311
uses: actions-rs/toolchain@v1
312
0 commit comments