Skip to content

Commit

Permalink
refactor(ci): use hardcoded workspace members for cargo-msrv command
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jan 19, 2024
1 parent f04bf6e commit ec6035a
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 @@ -144,7 +144,7 @@ jobs:
- name: Run cargo-msrv
shell: bash
run: |
for package in $(cargo metadata --format-version 1 | jq -r ".workspace_members[]" | awk '{print $1}'); do
for package in "git-cliff" "git-cliff-core"; do
printf "Checking MSRV for $package..."
cargo msrv --output-format json --path "$package" verify | tail -n 1 | jq --exit-status '.success'
done

0 comments on commit ec6035a

Please sign in to comment.