cache more aggressively

This commit is contained in:
Michael Zhang 2021-03-20 04:52:59 -05:00
parent c3905148c1
commit aba067266d
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
2 changed files with 18 additions and 1 deletions

View file

@ -38,4 +38,12 @@ jobs:
branch: gh-pages branch: gh-pages
folder: public 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 :

View file

@ -18,3 +18,12 @@ jobs:
run: | run: |
cargo test --all 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 :