File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,22 +30,22 @@ jobs:
30
30
~/.cargo/registry/cache/
31
31
~/.cargo/git/db/
32
32
yellowstone-vixen/target/
33
- key : cargo-${{ hashFiles('**/Cargo.lock') }}-0001
33
+ key : cargo-${{ hashFiles('**/Cargo.lock') }}-0002
34
34
35
35
# Cache Rust Nightly Toolchain
36
36
- name : Cache Rust Nightly
37
37
id : cache-rust-nightly
38
38
uses : actions/cache@v4
39
39
with :
40
40
path : ~/.rustup
41
- key : rust-nightly-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}
41
+ key : rust-nightly-0001- ${{ runner.os }}-${{ hashFiles('rust-toolchain') }}
42
42
43
43
- name : Install Rust Nightly if Not Cached
44
44
if : steps.cache-rust-nightly.outputs.cache-hit != 'true'
45
45
uses : actions-rs/toolchain@v1
46
46
with :
47
47
toolchain : nightly
48
- components : rustfmt
48
+ components : rustfmt, clippy
49
49
50
50
- name : Check Rust Toolchain Version
51
51
run : |
77
77
78
78
# clippy
79
79
- name : Check clippy
80
- run : cargo clippy --all-targets --tests -- -Dwarnings
80
+ run : cargo +nightly clippy --all-targets --tests -- -Dwarnings
You can’t perform that action at this time.
0 commit comments