Merge 226a795b510330e9c0276451cfef186c0ed8af2e into 704facf57e6136b1bc63b828d79edcd491f0ee84

This commit is contained in:
Jeremiah Senkpiel 2023-09-25 21:26:08 +00:00 committed by GitHub
commit 955482fe81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -589,14 +589,20 @@ whenever possible:
```yaml ```yaml
- uses: actions/cache@v3 - uses: actions/cache@v3
env:
BUILD_TYPE: debug # adjust when using `--release` or custom targets
with: with:
path: | path: |
~/.cargo/.crates.toml
~/.cargo/.crates2.json
~/.cargo/bin/ ~/.cargo/bin/
~/.cargo/registry/index/ ~/.cargo/registry/index/
~/.cargo/registry/cache/ ~/.cargo/registry/cache/
~/.cargo/git/db/ ~/.cargo/git/db/
target/ target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} key: ${{ runner.os }}-cargo-${{ env.BUILD_TYPE }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-${{ env.BUILD_TYPE }}-
``` ```
## Scala - SBT ## Scala - SBT