Skip to content

Commit 467ee36

Browse files
committed
Fix workflow
1 parent b9c3d27 commit 467ee36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
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

0 commit comments

Comments
 (0)