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

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-12-16 16:35:22 -03:00
parent 74b2e84137
commit 2979e847b5

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-botui-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-botui-
- name: Install Rust
uses: msrd0/rust-toolchain@v1
with: