Skip to content

Build fixes for nix + a rust check error #199

Build fixes for nix + a rust check error

Build fixes for nix + a rust check error #199

Workflow file for this run

name: Rust MSRV verification test
on:
pull_request:
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
msrv-test:
name: Rust MSRV verification test
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack
- name: Check MSRV
run: cargo hack check --rust-version --workspace --all-targets --all-features