Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackDex committed Jan 24, 2023
1 parent b9c3d27 commit 467ee36
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: Swatinem/rust-cache@v2
# End Enable Rust Caching

# Uses the rust-toolchain file to determine version
# Install the correct rust toolchain
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@nightly
with:
Expand All @@ -41,17 +41,17 @@ jobs:

# Run cargo clippy, and fail on warnings (In release mode to speed up future builds)
- name: cargo clippy
run: clippy --release -- -D warnings
run: cargo clippy --release -- -D warnings
# End Run cargo clippy

# Run cargo fmt
- name: cargo fmt
run: fmt --all -- --check
run: cargo fmt --all -- --check
# End Run cargo fmt

# Build the binary
- name: cargo build --release
run: build --release
run: cargo build --release
# End Build the binary

# Upload artifact to Github Actions
Expand Down

0 comments on commit 467ee36

Please sign in to comment.