Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
Signed-off-by: ArchBlood <35392110+ArchBlood@users.noreply.github.com>
  • Loading branch information
ArchBlood authored Mar 28, 2024
1 parent 71c9794 commit 93be4fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ jobs:
toolchain: stable

- name: Check code formatting
run: cargo fmt -- --check
run: cargo fmt -- --check --manifest-path=.Cargo.toml
working-directory: ${{ github.workspace }}

- name: Check for clippy warnings
run: cargo clippy -- -D warnings
run: cargo clippy -- -D warnings --manifest-path=.Cargo.toml
working-directory: ${{ github.workspace }}

- name: Run tests
run: cargo test
run: cargo test --manifest-path=.Cargo.toml
working-directory: ${{ github.workspace }}

- name: Audit dependencies
run: cargo audit
run: cargo audit --manifest-path=.Cargo.toml
working-directory: ${{ github.workspace }}

- name: Build release
run: cargo build --release
run: cargo build --release --manifest-path=.Cargo.toml
working-directory: ${{ github.workspace }}

0 comments on commit 93be4fe

Please sign in to comment.