Skip to content

Commit

Permalink
Add clippy for apps directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaofei0800 committed Nov 23, 2023
1 parent 55ff618 commit bc791b2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
with:
submodules: 'recursive'

- name: Update rust
run: |
rustup update
- name: Code format check
run: cargo fmt --check

Expand All @@ -29,7 +33,9 @@ jobs:
run: cargo build --all --verbose

- name: Code lint check
run: cargo clippy
run: |
cargo clippy
cd apps && cargo clippy
- name: Unit testing
run: cargo test --verbose
Expand Down

0 comments on commit bc791b2

Please sign in to comment.