add clippy to CI

This commit is contained in:
Markus Unterwaditzer
2025-04-25 16:47:50 +02:00
committed by Will Greenberg
parent 32b67df55d
commit 7e1b410f89

View File

@@ -24,6 +24,8 @@ jobs:
run: cargo check --verbose --no-default-features --features=${{ matrix.device.name }}
- name: Run tests
run: cargo test --verbose --no-default-features --features=${{ matrix.device.name }}
- name: Run clippy
run: cargo clippy --verbose --no-default-features --features=${{ matrix.device.name }}
windows_serial_check_and_test:
runs-on: windows-latest
@@ -38,4 +40,4 @@ jobs:
shell: bash
run: |
cd serial
cargo test --verbose --no-default-features --features=${{ matrix.device.name }}
cargo test --verbose --no-default-features --features=${{ matrix.device.name }}