Add Cargo caching for faster builds
Some checks failed
GBCI / test (push) Failing after 20s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-12-16 16:35:23 -03:00
parent 5392ac3159
commit 3a81dbce41

View file

@ -16,6 +16,17 @@ jobs:
- uses: actions/checkout@v4
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-bottest-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-bottest-
- name: Install Rust
uses: msrd0/rust-toolchain@v1
with: