File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ jobs:
124
124
- name : Install Rust (nightly)
125
125
uses : actions-rs/toolchain@v1
126
126
with :
127
- toolchain : stable-x86_64-unknown-linux-gnu
127
+ toolchain : nightly
128
128
profile : minimal
129
129
override : true
130
130
@@ -143,3 +143,34 @@ jobs:
143
143
if : github.ref == 'refs/heads/master'
144
144
uses : codecov/codecov-action@v1
145
145
with : { file: cobertura.xml }
146
+
147
+ minimal-versions :
148
+ name : minimal versions
149
+ runs-on : ubuntu-latest
150
+ steps :
151
+ - uses : actions/checkout@v2
152
+
153
+ - name : Install Rust (nightly)
154
+ uses : actions-rs/toolchain@v1
155
+ with :
156
+ toolchain : nightly
157
+ profile : minimal
158
+ override : true
159
+
160
+ - name : Generate Cargo.lock
161
+ uses : actions-rs/cargo@v1
162
+ with : { command: generate-lockfile }
163
+ - name : Cache Dependencies
164
+
165
+
166
+ - name : Install cargo-minimal-versions
167
+ uses : actions-rs/cargo@v1
168
+ with :
169
+ command : install
170
+ args : cargo-minimal-versions
171
+
172
+ - name : Check With Minimal Versions
173
+ uses : actions-rs/cargo@v1
174
+ with :
175
+ command : minimal-versions
176
+ args : check
You can’t perform that action at this time.
0 commit comments