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 a4142d9 commit b06e190Copy full SHA for b06e190
.github/workflows/ci.yaml
@@ -15,6 +15,14 @@ env:
15
MSRV: 1.64.0
16
17
jobs:
18
+ pass-msrv:
19
+ runs-on: ubuntu-latest
20
+ outputs:
21
+ MSRV: ${{ env.MSRV }}
22
+ steps:
23
+ - name: Pass MSRV
24
+ run: echo "MSRV=${{ env.MSRV }}" >> $GITHUB_OUTPUT
25
+
26
clippy:
27
runs-on: ubuntu-latest
28
strategy:
@@ -69,13 +77,14 @@ jobs:
69
77
70
78
tests:
71
79
80
+ needs: pass-msrv
72
81
73
82
matrix:
74
83
rust:
75
84
- stable
76
85
- beta
86
- nightly
- - ${{ env.MSRV }}
87
+ - ${{ needs.pass-msrv.outputs.MSRV }}
88
89
name: tests/${{ matrix.rust }}
90
steps:
0 commit comments