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 2525 uses : Swatinem/rust-cache@v2
2626 # End Enable Rust Caching
2727
28- # Uses the rust-toolchain file to determine version
28+ # Install the correct rust toolchain
2929 - name : Install Rust Toolchain
3030 uses : dtolnay/rust-toolchain@nightly
3131 with :
@@ -41,17 +41,17 @@ jobs:
4141
4242 # Run cargo clippy, and fail on warnings (In release mode to speed up future builds)
4343 - name : cargo clippy
44- run : clippy --release -- -D warnings
44+ run : cargo clippy --release -- -D warnings
4545 # End Run cargo clippy
4646
4747 # Run cargo fmt
4848 - name : cargo fmt
49- run : fmt --all -- --check
49+ run : cargo fmt --all -- --check
5050 # End Run cargo fmt
5151
5252 # Build the binary
5353 - name : cargo build --release
54- run : build --release
54+ run : cargo build --release
5555 # End Build the binary
5656
5757 # Upload artifact to Github Actions
You can’t perform that action at this time.
0 commit comments