Skip to content

Commit 37abce4

Browse files
authored
Add CI for wasm32 (#218)
Co-authored-by: oech3 <>
1 parent a340afb commit 37abce4

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/wasi.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# spell-checker:ignore wasip
2+
name: WASI
3+
4+
on:
5+
pull_request:
6+
push:
7+
branches:
8+
- main
9+
10+
permissions:
11+
contents: read
12+
13+
# End the current execution if there is a new changeset in the PR.
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
17+
18+
jobs:
19+
test_wasi:
20+
name: Tests
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v6
24+
- uses: dtolnay/rust-toolchain@stable
25+
with:
26+
targets: wasm32-wasip1
27+
- name: check
28+
run: cargo check --target wasm32-wasip1

0 commit comments

Comments
 (0)