Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
Ensure the working directory is ./rust for Rust actions
Browse files Browse the repository at this point in the history
  • Loading branch information
igbanam committed Oct 20, 2022
1 parent f6956d5 commit c95e673
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/run_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ jobs:
components: rustfmt, clippy
toolchain: ${{ matrix.rust-toolchain }}
- name: Check Format
working-directory: ./rust
uses: actions-rs/cargo@v1
with:
args: --all -- --check
command: fmt
toolchain: ${{ matrix.rust-toolchain }}
- name: Lint
working-directory: ./rust
uses: actions-rs/cargo@v1
with:
args: --all -- -D warnings
Expand All @@ -43,4 +45,5 @@ jobs:
args: "--force cargo-audit"
command: install
- name: Run Audit on Deps
working-directory: ./rust
run: cargo-audit audit

0 comments on commit c95e673

Please sign in to comment.