Skip to content

Commit

Permalink
fix(ci): update cargo-msrv arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jan 19, 2024
1 parent df55181 commit 131dd10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,5 @@ jobs:
tar -xvf cargo-msrv*.tar* -C ~/.cargo/bin/ cargo-msrv
for package in $(cargo metadata --format-version 1 | jq -r ".workspace_members[]" | awk '{print $1}'); do
printf "Checking MSRV for $package..."
cargo msrv --output-format json --path "$package" verify | tail -n 1 | jq --exit-status '.success'
cargo msrv --output-format json --manifest-path "$package/Cargo.toml" verify | tail -n 1 | jq --exit-status '.success'
done

0 comments on commit 131dd10

Please sign in to comment.