We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee2b3f commit 7151b01Copy full SHA for 7151b01
.github/workflows/_build-rust.yml
@@ -52,7 +52,8 @@ jobs:
52
~/.cargo/registry/cache/
53
~/.cargo/git/db/
54
target/
55
- key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ inputs.rust-version }}
+ # We do not have a Cargo.lock here, so I hash Cargo.toml
56
+ key: ${{ runner.os }}-rust-${{ inputs.rust-version }}-cargo-${{ hashFiles('**/Cargo.toml') }}
57
restore-keys: ${{ runner.os }}-cargo-${{ inputs.rust-version }}
58
- run: cargo version
59
- name: Code Formatting
0 commit comments