diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-01-26 15:16:05 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-01-26 15:16:05 +0100 |
| commit | d8d439e6401607fab18feb5025f3b91f135e3a50 (patch) | |
| tree | f20f1d5961a5b0810cceca575a206ad45d2a3a9c /.github | |
| parent | 67f0fd68f1f60f0629d997d5181e5e06440258d7 (diff) | |
feat: add more examples, work on new public api
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 92d56f4..05f7397 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -20,10 +20,10 @@ jobs: run: rustup update stable - name: Build (stable) - run: cargo +stable build --workspace --exclude wasm-testsuite + run: cargo +stable build --workspace - name: Run tests (stable) - run: cargo +stable test --workspace --exclude wasm-testsuite + run: cargo +stable test --workspace - name: Run MVP testsuite run: cargo +stable test-mvp @@ -41,10 +41,10 @@ jobs: run: rustup update nightly - name: Build (nightly, no default features) - run: cargo +nightly build --workspace --exclude wasm-testsuite --exclude rust-wasm-examples --no-default-features + run: cargo +nightly build --workspace --no-default-features - name: Run tests (nightly, no default features) - run: cargo +nightly test --workspace --exclude wasm-testsuite --exclude rust-wasm-examples --no-default-features + run: cargo +nightly test --workspace --no-default-features - name: Run MVP testsuite (nightly) run: cargo +nightly test-mvp |
