summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-01-26 01:26:09 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-01-26 01:26:09 +0100
commit461126ce309f99e4ad2a6ddcbc175ea01c5e8fee (patch)
tree30de8bcfec97f87d468191fb9959f90e7ee91100 /.github
parentb9a4e8788f374dac94e4f3f5b062dbe2a1d2a10c (diff)
feat: full no_std support
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to '.github')
-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 41dd979..92d56f4 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -41,10 +41,10 @@ jobs:
run: rustup update nightly
- name: Build (nightly, no default features)
- run: cargo +nightly build --workspace --exclude wasm-testsuite --no-default-features
+ run: cargo +nightly build --workspace --exclude wasm-testsuite --exclude rust-wasm-examples --no-default-features
- name: Run tests (nightly, no default features)
- run: cargo +nightly test --workspace --exclude wasm-testsuite --no-default-features
+ run: cargo +nightly test --workspace --exclude wasm-testsuite --exclude rust-wasm-examples --no-default-features
- name: Run MVP testsuite (nightly)
run: cargo +nightly test-mvp