We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80c7de commit e2289e4Copy full SHA for e2289e4
.github/workflows/pr.yml
@@ -17,6 +17,7 @@ jobs:
17
# Install Rust with clippy/rustfmt
18
- uses: actions-rust-lang/setup-rust-toolchain@v1
19
with:
20
+ target: wasm32-unknown-unknown
21
components: clippy, rustfmt
22
23
# Set RUSTFLAGS
@@ -27,5 +28,8 @@ jobs:
27
28
- run: cargo clippy --no-deps
29
- run: cargo fmt --check
30
31
+ # Same but for WASM
32
+ - run: cargo check -p web-transport -p web-transport-wasm --verbose --target wasm32-unknown-unknown
33
+
34
# Check for unused dependencies
35
- uses: bnjbvr/cargo-machete@main
0 commit comments