Skip to content

Commit bb81164

Browse files
committed
fix CI cache key name?
1 parent d8a4fee commit bb81164

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- ~/.cargo/git/db/
3737
key: ${{ runner.OS }}-cargo-msrv-${{ hashFiles('**/Cargo.lock') }}
3838
restore-keys: |
39-
${{ runner.OS }}-cargo-msrv
39+
${{ runner.OS }}-cargo-msrv-
4040
4141
- name: install cargo-msrv
4242
uses: actions-rs/install@v0.1
@@ -81,7 +81,7 @@ jobs:
8181
- ~/.cargo/git/db/
8282
key: ${{ runner.OS }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}
8383
restore-keys: |
84-
${{ runner.OS }}-cargo-build
84+
${{ runner.OS }}-cargo-build-
8585
8686
- name: Cache Build Output Dependencies
8787
uses: actions/cache@v2
@@ -123,15 +123,15 @@ jobs:
123123
- ~/.cargo/git/db/
124124
key: ${{ runner.OS }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
125125
restore-keys: |
126-
${{ runner.OS }}-cargo-test
126+
${{ runner.OS }}-cargo-test-
127127
128128
- name: Cache Build Output Dependencies
129129
uses: actions/cache@v2
130130
with:
131131
path: target
132132
key: ${{ runner.OS }}-test-${{ hashFiles('**/Cargo.lock') }}
133133
restore-keys: |
134-
${{ runner.OS }}-test
134+
${{ runner.OS }}-test-
135135
136136
- name: Check Formatting
137137
run: cargo fmt --check

0 commit comments

Comments
 (0)