diff --git a/.github/workflows/check-and-test.yml b/.github/workflows/check-and-test.yml index 8779b45..600508f 100644 --- a/.github/workflows/check-and-test.yml +++ b/.github/workflows/check-and-test.yml @@ -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 }} \ No newline at end of file + cargo test --verbose --no-default-features --features=${{ matrix.device.name }}