From f74e05e3c3595cd95c5ecea2af1b4d78c336964b Mon Sep 17 00:00:00 2001 From: "Adam C. Foltzer" Date: Fri, 26 May 2023 18:07:31 -0700 Subject: [PATCH] add wasm32-wasi target in CI --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12b5fbd3..37f64532 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,6 +119,9 @@ jobs: - name: Install Wasmtime run: curl https://wasmtime.dev/install.sh -sSf | bash + - name: Install wasm32-wasi target + run: rustup target add wasm32-wasi + - name: Default features run: cargo test --target wasm32-wasi