An open API service indexing awesome lists of open source software.

https://github.com/actions-rust-lang/msrv

Read MSRV from package or workspace manifest
https://github.com/actions-rust-lang/msrv

ci github-actions hacktoberfest rust rust-lang

Last synced: about 2 months ago
JSON representation

Read MSRV from package or workspace manifest

Awesome Lists containing this project

README

        

# MSRV

> Read MSRV from package or workspace manifest.

## Usage

```yml
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.