summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yaml
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-03-13 15:28:31 +0100
committerGitHub <noreply@github.com>2024-03-13 15:28:31 +0100
commit03020080366241f1c5b610546d3e17687232eb30 (patch)
tree67ed5722bb37f55ffa135ce241f722f78cb56831 /.github/workflows/test.yaml
parent398b2af4ea37be98093bdf7ac185a468c62c4aef (diff)
chore: optimize block stack, remove EndFunc (#12)
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to '.github/workflows/test.yaml')
-rw-r--r--.github/workflows/test.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index d2b60d1..6f2da8d 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -47,7 +47,7 @@ jobs:
run: cargo +stable build --workspace
- name: Run tests (stable)
- run: cargo +stable test --workspace
+ run: cargo +stable test --workspace && cargo +stable run --example wasm-rust all
- name: Run MVP testsuite
run: cargo +stable test-mvp
@@ -75,7 +75,7 @@ jobs:
run: cargo +nightly build --workspace --no-default-features
- name: Run tests (nightly, no default features)
- run: cargo +nightly test --workspace --no-default-features
+ run: cargo +nightly test --workspace --no-default-features && cargo +nightly run --example wasm-rust all
- name: Run MVP testsuite (nightly)
run: cargo +nightly test-mvp