cache cargo dependancies
Some checks failed
Build / build (push) Failing after 1m48s

This commit is contained in:
2026-01-31 18:50:35 -05:00
parent 2e01a32802
commit e04f0a3712

View File

@@ -13,6 +13,17 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache Cargo Dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build
run: cargo build --release