We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1816e18 commit ca211f5Copy full SHA for ca211f5
.github/workflows/ci.yml
@@ -78,8 +78,14 @@ jobs:
78
uses: dtolnay/rust-toolchain@nightly
79
with:
80
targets: wasm32-wasip2
81
- - name: Build
82
- run: cargo build --target wasm32-wasip2 --features nightly
+ - name: Install wasmtime
+ run: curl https://wasmtime.dev/install.sh -sSf | bash
83
+ - name: Test
84
+ env:
85
+ RUST_BACKTRACE: 1
86
+ RUSTFLAGS: ""
87
+ CARGO_TARGET_WASM32_WASIP2_RUNNER: "/home/runner/.wasmtime/bin/wasmtime --dir /tmp/"
88
+ run: cargo test --target wasm32-wasip2 --features nightly
89
wasm:
90
name: WASM Test Build
91
runs-on: ubuntu-latest
0 commit comments