Skip to content

Commit

Permalink
Fix cache paths in rust workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed Oct 1, 2024
1 parent 384aef8 commit 298ca3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
id: rust-cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
orchestrator/target/
~/.cargo/bin
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
orchestrator/target
key: ${{ runner.os }}-cargo-${{ hashFiles('orchestrator/Cargo.lock') }}
- name: Run Orchestrator unit tests
run: cd orchestrator && cargo test --all --verbose
Expand Down

0 comments on commit 298ca3d

Please sign in to comment.