Skip to content

Commit

Permalink
Add missing features and target flag to clippy and test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Sep 11, 2023
1 parent 505f06d commit a9b60db
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit a9b60db

Please sign in to comment.