Skip to content

Commit

Permalink
Run against wasm toolchain in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatekii committed Dec 26, 2024
1 parent 1ab30cc commit 87da2ca
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,15 @@ jobs:
run: |
cargo build --target aarch64-linux-android --all-features
cargo build --target armv7-linux-androideabi --all-features
build_wasm32:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: "wasm32-unknown-unknown"
- name: build
run: |
cargo build --target wasm32-unknown-unknown --all-features

0 comments on commit 87da2ca

Please sign in to comment.