|
|
@ -10,6 +10,7 @@
|
|
|
|
- [Ruby - Gem](#ruby---gem)
|
|
|
|
- [Ruby - Gem](#ruby---gem)
|
|
|
|
- [Go - Modules](#go---modules)
|
|
|
|
- [Go - Modules](#go---modules)
|
|
|
|
- [Elixir - Mix](#elixir---mix)
|
|
|
|
- [Elixir - Mix](#elixir---mix)
|
|
|
|
|
|
|
|
- [Rust - Cargo](#rust---cargo)
|
|
|
|
|
|
|
|
|
|
|
|
## Node - npm
|
|
|
|
## Node - npm
|
|
|
|
|
|
|
|
|
|
|
@ -119,3 +120,23 @@ uses: actions/cache@preview
|
|
|
|
restore-keys: |
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-mix-
|
|
|
|
${{ runner.os }}-mix-
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Rust - Cargo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
- name: Cache cargo registry
|
|
|
|
|
|
|
|
uses: actions/cache@preview
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: ~/.cargo/registry
|
|
|
|
|
|
|
|
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Cache cargo index
|
|
|
|
|
|
|
|
uses: actions/cache@preview
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: ~/.cargo/git
|
|
|
|
|
|
|
|
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Cache cargo build
|
|
|
|
|
|
|
|
uses: actions/cache@preview
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: target
|
|
|
|
|
|
|
|
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
```
|
|
|
|