Skip to content

Commit

Permalink
ci: exclude wasm-testsuite
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
  • Loading branch information
explodingcamera committed Jan 10, 2024
1 parent f4fca66 commit 53fe20a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 53fe20a

Please sign in to comment.