Skip to content

Merge pull request #81 from jfrimmel/better-error-output #56

Merge pull request #81 from jfrimmel/better-error-output

Merge pull request #81 from jfrimmel/better-error-output #56

Workflow file for this run

name: Minimum Supported Rust Version (MRSV)
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
MSRV: "1.51"
jobs:
# build but don't test the crate with the Minimum Supported Rust Version
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup update $MSRV && rustup default $MSRV
- run: cargo check