CI: check all targets in cargo-msrv verify test

cargo-msrv verify was verifying only library/binary targets, and missed
the test targets. Specify the check command to use so that all targets
are checked.

Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
pull/441/head
Manos Pitsidianakis 3 months ago
parent 9f783d9a07
commit b7da1d0f99
No known key found for this signature in database
GPG Key ID: 7729C7707F7E09D0

@ -76,8 +76,8 @@ jobs:
if: success() || failure() if: success() || failure()
run: | run: |
source "${HOME}/.cargo/env" source "${HOME}/.cargo/env"
cargo-msrv --output-format json --log-level trace --log-target stdout --path meli verify cargo-msrv --output-format json --log-level trace --log-target stdout --path meli verify -- cargo check --all-targets
cargo-msrv --output-format json --log-level trace --log-target stdout --path melib verify cargo-msrv --output-format json --log-level trace --log-target stdout --path melib verify -- cargo check --all-targets
- name: cargo-sort - name: cargo-sort
if: success() || failure() if: success() || failure()
run: | run: |

Loading…
Cancel
Save