Skip to content

Commit 53fe20a

Browse files
ci: exclude wasm-testsuite
Signed-off-by: Henry Gressmann <[email protected]>
1 parent f4fca66 commit 53fe20a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
rustup default stable
2323
2424
- name: Build (stable)
25-
run: cargo +stable build --all
25+
run: cargo +stable build --workspace --exclude wasm-testsuite
2626

2727
- name: Run tests (stable)
28-
run: cargo +stable test --all
28+
run: cargo +stable test --workspace --exclude wasm-testsuite
2929

3030
test-no-std:
3131
name: Test without default features on nightly Rust
@@ -39,7 +39,7 @@ jobs:
3939
rustup default nightly
4040
4141
- name: Build (nightly, no default features)
42-
run: cargo +nightly build --all --no-default-features
42+
run: cargo +nightly build --workspace --exclude wasm-testsuite --no-default-features
4343

4444
- name: Run tests (nightly, no default features)
45-
run: cargo +nightly test --all --no-default-features
45+
run: cargo +nightly test --workspace --exclude wasm-testsuite --no-default-features

0 commit comments

Comments
 (0)