2024-05-26 01:35:31 +01:00
2024-05-26 01:23:47 +01:00
2024-05-14 05:39:31 +01:00
2024-05-26 01:23:47 +01:00
2024-05-26 01:35:31 +01:00
2024-05-14 05:39:31 +01:00

MSRV

Read MSRV from package or workspace manifest.

Usage

jobs:
  read_msrv:
    name: Read MSRV
    uses: actions-rust-lang/msrv/.github/workflows/msrv.yml@main

  build_and_test:
    needs:
      - read_msrv

    strategy:
      fail-fast: false
      matrix:
        version:
          - { name: msrv, version: "${{ needs.read_msrv.outputs.msrv }}" }
          - { name: stable, version: stable }

Drawbacks

  • Assumes all packages in workspace have same MSRV.
Description
No description provided
Readme 43 KiB
Languages
Rust 100%