cache more aggressively
This commit is contained in:
parent
c3905148c1
commit
aba067266d
2 changed files with 18 additions and 1 deletions
10
.github/workflows/doc.yml
vendored
10
.github/workflows/doc.yml
vendored
|
@ -38,4 +38,12 @@ jobs:
|
|||
branch: gh-pages
|
||||
folder: public
|
||||
|
||||
# vim: set sw=2 tw=2 :
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/registry
|
||||
~/.cargo/git
|
||||
target
|
||||
key: ${{ runner.os }}-cargo
|
||||
|
||||
# vim: set ts=2 tw=2 sw=2 et :
|
||||
|
|
9
.github/workflows/run-tests.yml
vendored
9
.github/workflows/run-tests.yml
vendored
|
@ -18,3 +18,12 @@ jobs:
|
|||
run: |
|
||||
cargo test --all
|
||||
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/registry
|
||||
~/.cargo/git
|
||||
target
|
||||
key: ${{ runner.os }}-cargo
|
||||
|
||||
# vim: set ts=2 tw=2 sw=2 et :
|
||||
|
|
Loading…
Reference in a new issue