Get the Minimum Supported Rust Version of your project
This is essentially a wrapper around cargo-msrv. Many thanks to the maintainers of that crate!
steps:
- uses: actions/checkout@v2
- uses: spenserblack/actions-msrv@<commit-ish>
id: get-msrv
- run: 'echo "MSRV is ${{ steps.get-msrv.outputs.msrv }}"'
- uses: spenserblack/actions-msrv@<commit-ish>
with:
set: true
NOTE You might want to look up reusable workflows to easily use the examples.