Skip to content

Commit

Permalink
fix(ci): Add correct return code to msrv check
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVoogsgerd committed Oct 11, 2024
1 parent 8615830 commit 98dd7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci-cd/msrv
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ret=0
echo "Running Cargo MSRV on the entire workspace"
for file in $(tomlq -r < Cargo.toml .workspace.members.[]); do
echo "::group::${file}"
if cargo msrv verify --output-format json --manifest-path "$file"; then
if ! cargo msrv verify --output-format json --manifest-path "$file"; then
ret=1
fi
echo "::endgroup::"
Expand Down

0 comments on commit 98dd7f4

Please sign in to comment.