File tree 1 file changed +31
-3
lines changed
1 file changed +31
-3
lines changed Original file line number Diff line number Diff line change 15
15
needs :
16
16
- style
17
17
- test
18
+ - msrv
18
19
- features
19
20
- ffi
20
21
- ffi-header
52
53
- stable
53
54
- beta
54
55
- nightly
55
- - 1.46 # keep in sync with MSRV.md dev doc
56
56
57
57
os :
58
58
- ubuntu-latest
67
67
- rust : nightly
68
68
features : " --features full,nightly"
69
69
benches : true
70
- - rust : 1.46
71
- features : " --features full"
72
70
73
71
runs-on : ${{ matrix.os }}
74
72
96
94
command : test
97
95
args : --benches ${{ matrix.features }}
98
96
97
+ msrv :
98
+ name : Check MSRV (${{ matrix.rust }})
99
+ needs : [style]
100
+ strategy :
101
+ matrix :
102
+ rust :
103
+ - 1.46 # keep in sync with MSRV.md dev doc
104
+
105
+ os :
106
+ - ubuntu-latest
107
+
108
+ runs-on : ${{ matrix.os }}
109
+
110
+ steps :
111
+ - name : Checkout
112
+ uses : actions/checkout@v1
113
+
114
+ - name : Install Rust (${{ matrix.rust }})
115
+ uses : actions-rs/toolchain@v1
116
+ with :
117
+ profile : minimal
118
+ toolchain : ${{ matrix.rust }}
119
+ override : true
120
+
121
+ - name : Check
122
+ uses : actions-rs/cargo@v1
123
+ with :
124
+ command : check
125
+ args : --features full
126
+
99
127
features :
100
128
name : features
101
129
needs : [style]
You can’t perform that action at this time.
0 commit comments