re-add crate caching

This commit is contained in:
sfja 2026-03-23 23:49:57 +01:00
parent 03d474c6d9
commit 96a4dba3e4

View File

@ -28,6 +28,14 @@ jobs:
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- run: rustup default stable - run: rustup default stable
- name: cache crates
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: check - name: check
working-directory: ./unnamed-game-engine working-directory: ./unnamed-game-engine
run: cargo check run: cargo check