diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 06272262..54460eb0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,6 +19,10 @@ jobs: with: submodules: 'recursive' + - name: Update rust + run: | + rustup update + - name: Code format check run: cargo fmt --check @@ -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