Skip to content

release: 0.11.3

release: 0.11.3 #4

Workflow file for this run

name: MSRV
on:
push:
branches: []
pull_request:
branches: []
defaults:
run:
shell: bash
env:
CARGO_TERM_COLOR: always
jobs:
all:
name: All
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-apple-darwin
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
runs-on: ${{matrix.os}}
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: taiki-e/install-action@v2
with:
tool: cargo-msrv
- name: Info
run: |
rustup --version
cargo --version
cargo clippy --version
- name: MSRV
run: |
cargo msrv --path fyi verify
cargo msrv --path fyi_msg verify -- cargo check --all-features