Skip to content

Commit

Permalink
fix test.yml workflow syntax issue 2
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Sep 17, 2024
1 parent 3602841 commit 0cf6ba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
- name: Restore Cargo home
uses: actions/cache/restore@v4
id: cache-cargo-home
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
with:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
path: |
~/.cargo/bin/
~/.cargo/registry/index/
Expand All @@ -60,8 +60,8 @@ jobs:
- name: Save Cargo home
uses: actions/cache/save@v4
id: cache-cargo-home
key: ${{ steps.cache-cargo-home.outputs.cache-primary-key }}
with:
key: ${{ steps.cache-cargo-home.outputs.cache-primary-key }}
path: |
~/.cargo/bin/
~/.cargo/registry/index/
Expand Down

0 comments on commit 0cf6ba0

Please sign in to comment.