From 5821bf3b6360bf7f179db55d8be404bd233e3cec Mon Sep 17 00:00:00 2001 From: Eduard Smet Date: Tue, 28 Jul 2026 14:08:53 +0200 Subject: [PATCH] fix(ci): Add support for the `wasm32-wasip2` target --- .github/workflows/conformance.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index 65cfcb2..0da1259 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -15,6 +15,11 @@ jobs: steps: - name: Checkout Branch uses: actions/checkout@v6 + - name: Install Rust Toolchain + uses: dtolnay/rust-toolchain@stable + with: + targets: wasm32-wasip2 + components: clippy,rustfmt - name: Run Clippy Checks run: cargo clippy --locked -- -W clippy::pedantic -D warnings - name: Run rustfmt Checks