Add missing features and target flag to clippy and test in CI

This commit is contained in:
Filip Tibell 2023-09-11 13:32:07 -05:00
parent 505f06d973
commit a9b60db54f
No known key found for this signature in database

View file

@ -81,7 +81,13 @@ jobs:
--target ${{ matrix.cargo-target }}
- name: Lint
run: cargo clippy
run: |
cargo clippy \
--locked --all-features \
--target ${{ matrix.cargo-target }}
- name: Test
run: cargo test --lib
run: |
cargo test \
--locked --all-features \
--target ${{ matrix.cargo-target }}