We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbcedc9 commit 7a563cfCopy full SHA for 7a563cf
.vscode/settings.json
@@ -0,0 +1,5 @@
1
+{
2
+ "cSpell.words": [
3
+ "msrv"
4
+ ]
5
+}
README.md
@@ -1,2 +1,27 @@
-# msrv
-Read MSRV from package or workspace manifest
+# MSRV
+
+> Read MSRV from package or workspace manifest.
+## Usage
6
7
+```yml
8
+jobs:
9
+ read_msrv:
10
+ name: Read MSRV
11
+ uses: actions-rust-lang/msrv/.github/workflows/msrv.yml@main
12
13
+ build_and_test:
14
+ needs:
15
+ - read_msrv
16
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ version:
21
+ - { name: msrv, version: "${{ needs.read_msrv.outputs.msrv }}" }
22
+ - { name: stable, version: stable }
23
+```
24
25
+## Drawbacks
26
27
+- Assumes all packages in workspace have same MSRV.
0 commit comments