Merge pull request #31 from RustyNova016/experimental-split #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on: https://github.com/foresterre/cargo-msrv/blob/main/.github/workflows/msrv.yml | |
name: MSRV | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
msrv: | |
name: Verify minimum supported Rust version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install cargo-msrv | |
run: cargo install cargo-msrv --all-features | |
- name: Run cargo-msrv | |
run: cargo msrv verify --output-format json | |
- name: Run cargo-msrv on verification failure | |
if: ${{ failure() }} | |
run: cargo msrv find --output-format json |