Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: install_cargo_msrv
run: cargo install --version 0.16.0-beta.20 --no-default-features cargo-msrv
run: cargo install --no-default-features cargo-msrv

- name: version_of_cargo_msrv
run: cargo msrv --version
Expand All @@ -34,8 +34,8 @@ jobs:
run: cp Cargo.lock.msrv Cargo.lock

- name: run_cargo_msrv
run: cargo msrv --output-format json verify -- cargo check --frozen
run: cargo msrv verify --output-format json -- cargo check --locked

- name: run_cargo_msrv_on_verify_failure
if: ${{ failure() }}
run: cargo msrv --output-format json -- cargo check --frozen
run: cargo msrv find --output-format json -- cargo check --locked
Loading