Skip to content

Module splitting

Module splitting #27

Workflow file for this run

# 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