Cleanup cache keys
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Valentin Brandl 2020-11-23 14:36:43 +01:00
parent 002119324f
commit 175b7c828b
3 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ jobs:
~/.cargo/registry
~/.cargo/git
./target
key: audit-${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
key: audit-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/audit-check@v1
with:

View File

@ -44,7 +44,7 @@ jobs:
~/.cargo/registry
~/.cargo/git
./target
key: release-${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
key: release-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Cargo build
uses: actions-rs/cargo@v1

View File

@ -24,7 +24,7 @@ jobs:
~/.cargo/registry
~/.cargo/git
./target
key: rustfmt-${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
key: rustfmt-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check Formatting
uses: actions-rs/cargo@v1
@ -54,7 +54,7 @@ jobs:
~/.cargo/registry
~/.cargo/git
./target
key: clippy-${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
key: clippy-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Clippy Linting
uses: actions-rs/cargo@v1
@ -89,7 +89,7 @@ jobs:
~/.cargo/registry
~/.cargo/git
./target
key: test-${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
key: test-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run Tests
uses: actions-rs/cargo@v1