Skip to content

Commit

Permalink
add fmt and clippy check
Browse files Browse the repository at this point in the history
  • Loading branch information
lulf committed Mar 29, 2024
1 parent 50dbbd5 commit d8bf541
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ jobs:
run: |
cd host
cargo check
cargo fmt --check
cargo clippy
- name: Test
run: |
cd host
cargo test -- --nocapture
- name: Build examples
run: for i in nrf-sdc; do pushd examples/$i; cargo build --release; popd; done;
run: for i in nrf-sdc; do pushd examples/$i; cargo fmt --check && cargo clippy && cargo build --release; popd; done;

0 comments on commit d8bf541

Please sign in to comment.