File tree Expand file tree Collapse file tree 7 files changed +593
-425
lines changed Expand file tree Collapse file tree 7 files changed +593
-425
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ jobs:
162
162
163
163
- name : Install cargo-binstall
164
164
uses : cargo-bins/cargo-binstall@main
165
-
165
+
166
166
- name : Install wasm-bindgen-test-runner
167
167
run : cargo binstall wasm-bindgen-cli --locked --no-confirm
168
168
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ jobs:
111
111
- name : list ignored tests
112
112
run : |
113
113
cargo nextest list --workspace ${{ env.FEATURES }} --lib --bins --tests --run-ignored ignored-only
114
- env :
114
+ env :
115
115
NEXTEST_NO_TESTS : " pass"
116
116
117
117
- name : run tests
@@ -224,7 +224,7 @@ jobs:
224
224
RUST_LOG : ${{ runner.debug && 'TRACE' || 'DEBUG'}}
225
225
NEXTEST_EXPERIMENTAL_LIBTEST_JSON : 1
226
226
NEXTEST_NO_TESTS : " pass"
227
-
227
+
228
228
- name : upload results
229
229
if : ${{ failure() && inputs.flaky }}
230
230
uses : actions/upload-artifact@v4
@@ -233,3 +233,27 @@ jobs:
233
233
path : output
234
234
retention-days : 1
235
235
compression-level : 0
236
+ minimal-crates :
237
+ runs-on : ${{ matrix.runner }}
238
+ strategy :
239
+ fail-fast : false
240
+ matrix :
241
+ name : [ubuntu-latest, macOS-arm-latest] # TODO: figure out install on windows
242
+ include :
243
+ - name : ubuntu-latest
244
+ os : ubuntu-latest
245
+ release-os : linux
246
+ release-arch : amd64
247
+ runner : [self-hosted, linux, X64]
248
+ - name : macOS-arm-latest
249
+ os : macOS-latest
250
+ release-os : darwin
251
+ release-arch : aarch64
252
+ runner : [self-hosted, macOS, ARM64]
253
+ steps :
254
+ - uses : actions/checkout@v4
255
+ - uses : dtolnay/rust-toolchain@nightly
256
+ - name : cargo check
257
+ run : |
258
+ rm -f Cargo.lock
259
+ cargo +nightly check -Z minimal-versions --workspace --all-features --lib --bins
You can’t perform that action at this time.
0 commit comments