File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -180,3 +180,34 @@ jobs:
180
180
with :
181
181
command : minimal-versions
182
182
args : check
183
+
184
+ nextest :
185
+ name : nextest
186
+ runs-on : ubuntu-latest
187
+ steps :
188
+ - uses : actions/checkout@v2
189
+
190
+ - name : Install Rust
191
+ uses : actions-rs/toolchain@v1
192
+ with :
193
+ toolchain : stable
194
+ profile : minimal
195
+ override : true
196
+
197
+ - name : Generate Cargo.lock
198
+ uses : actions-rs/cargo@v1
199
+ with : { command: generate-lockfile }
200
+ - name : Cache Dependencies
201
+
202
+
203
+ - name : Install cargo-nextest
204
+ uses : actions-rs/cargo@v1
205
+ with :
206
+ command : install
207
+ args : cargo-nextest
208
+
209
+ - name : Test with cargo-nextest
210
+ uses : actions-rs/cargo@v1
211
+ with :
212
+ command : nextest
213
+ args : run
Original file line number Diff line number Diff line change @@ -137,6 +137,16 @@ jobs:
137
137
command : install
138
138
args : cargo-hack
139
139
140
+ - name : Generate Cargo.lock
141
+ uses : actions-rs/cargo@v1
142
+ with : { command: generate-lockfile }
143
+
144
+ - name : Tweak lockfile
145
+ uses : actions-rs/cargo@v1
146
+ with :
147
+ command : update
148
+ args : -p=rustls --precise=0.20.2
149
+
140
150
- name : tests
141
151
run : |
142
152
sudo bash -c "ulimit -Sl 512 && ulimit -Hl 512 && PATH=$PATH:/usr/share/rust/.cargo/bin && RUSTUP_TOOLCHAIN=1.46 cargo ci-test-lower-msrv"
You can’t perform that action at this time.
0 commit comments