Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit 5c4b461

Browse files
committed
fix: add missing wasm32 target
1 parent 10d2a86 commit 5c4b461

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
with:
3131
deno-version: v2.x
3232
- uses: actions-rust-lang/setup-rust-toolchain@v1
33-
- run: make test
33+
- run: |
34+
rustup target add wasm32-unknown-unknown
35+
make test
3436
3537
release:
3638
if: ${{ github.event.inputs.tag != '' || startsWith(github.ref, 'refs/tags/v') }}

0 commit comments

Comments
 (0)