summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-01-10 01:19:19 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-01-10 01:19:19 +0100
commit53fe20ae76461ff8835fd6d8b3b5a1c550390bd9 (patch)
tree2ced58db434c47a485b0cb4ec159d6c83f3850a6
parentf4fca66b87851ae343ce4cd47c9684cbab62a0b3 (diff)
ci: exclude wasm-testsuite
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
-rw-r--r--.github/workflows/test.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 2718b2c..0baaba9 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -22,10 +22,10 @@ jobs:
rustup default stable
- name: Build (stable)
- run: cargo +stable build --all
+ run: cargo +stable build --workspace --exclude wasm-testsuite
- name: Run tests (stable)
- run: cargo +stable test --all
+ run: cargo +stable test --workspace --exclude wasm-testsuite
test-no-std:
name: Test without default features on nightly Rust
@@ -39,7 +39,7 @@ jobs:
rustup default nightly
- name: Build (nightly, no default features)
- run: cargo +nightly build --all --no-default-features
+ run: cargo +nightly build --workspace --exclude wasm-testsuite --no-default-features
- name: Run tests (nightly, no default features)
- run: cargo +nightly test --all --no-default-features
+ run: cargo +nightly test --workspace --exclude wasm-testsuite --no-default-features