From b7da1d0f9934ce1db2f8138c8c79880947dfae3a Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Mon, 15 Jul 2024 13:48:49 +0300 Subject: [PATCH] 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 --- .gitea/workflows/manifest_lints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/manifest_lints.yaml b/.gitea/workflows/manifest_lints.yaml index 48668553..1e92581f 100644 --- a/.gitea/workflows/manifest_lints.yaml +++ b/.gitea/workflows/manifest_lints.yaml @@ -76,8 +76,8 @@ jobs: if: success() || failure() run: | 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 melib 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 check --all-targets - name: cargo-sort if: success() || failure() run: |