Add CI for wasm32-wasip1

This commit is contained in:
oech3
2026-05-08 17:47:25 +09:00
committed by Guillem L. Jara
parent 9d5b76a8af
commit 81682ec7b0
+28
View File
@@ -0,0 +1,28 @@
# spell-checker:ignore wasip
name: WASI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
# End the current execution if there is a new changeset in the PR.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test_wasi:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@nightly
with:
targets: wasm32-wasip1
- name: check
run: cargo check --target wasm32-wasip1