diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-01-25 01:01:25 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-01-25 01:01:25 +0100 |
| commit | 64ed1bf86950c52e3400c0a536e223a53f48a4b7 (patch) | |
| tree | 90d03f81f2561f482a70719ad20324eece8251e1 /.github/workflows/test.yaml | |
| parent | be0c5aa8ec4dcb9bd595edfc83b979aa40d6ae5d (diff) | |
feat: pass full wasm 1.0 testsuite
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to '.github/workflows/test.yaml')
| -rw-r--r-- | .github/workflows/test.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0baaba9..24d4277 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -27,6 +27,9 @@ jobs: - name: Run tests (stable) run: cargo +stable test --workspace --exclude wasm-testsuite + - name: Run MVP testsuite + run: cargo +stable test-mvp + test-no-std: name: Test without default features on nightly Rust runs-on: ubuntu-latest @@ -43,3 +46,6 @@ jobs: - name: Run tests (nightly, no default features) run: cargo +nightly test --workspace --exclude wasm-testsuite --no-default-features + + - name: Run MVP testsuite (nightly) + run: cargo +nightly test-mvp |
