[ci] Fix clippy step to check matrix features

This commit is contained in:
Steve Myers 2020-12-30 19:23:00 -08:00
parent c2b2da7601
commit 8094263028
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051

View File

@ -44,7 +44,7 @@ jobs:
- name: Build
run: cargo build --features ${{ matrix.features }} --no-default-features
- name: Clippy
run: cargo clippy -- -D warnings
run: cargo clippy --features ${{ matrix.features }} --no-default-features -- -D warnings
- name: Test
run: cargo test --features ${{ matrix.features }} --no-default-features