Skip to content

Commit f28eb29

Browse files
committed
Fix build-test workflow cache step
1 parent 7f0e73b commit f28eb29

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/cont_integration.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
run: echo "${{ matrix.rust.version }} ${{ matrix.features }}" | tee .cache_key
3131
- name: cache
3232
uses: actions/cache@v3
33-
with:
34-
path: |
35-
~/.cargo/registry
36-
~/.cargo/git
37-
target
38-
key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
33+
with:
34+
path: |
35+
~/.cargo/registry
36+
~/.cargo/git
37+
target
38+
key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
3939
- name: Set default toolchain
4040
run: rustup default ${{ matrix.rust.version }}
4141
- name: Set profile

0 commit comments

Comments
 (0)