We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a340afb commit 37abce4Copy full SHA for 37abce4
1 file changed
.github/workflows/wasi.yml
@@ -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