Browse Source

add Wasm build to CI (#134)

main
Srinath Setty 1 year ago
committed by GitHub
parent
commit
0ae8d15953
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      .github/workflows/rust.yml

+ 4
- 0
.github/workflows/rust.yml

@ -17,8 +17,12 @@ jobs:
run: rustup component add rustfmt
- name: Install clippy
run: rustup component add clippy
- name: Install Wasm target
run: rustup target add wasm32-unknown-unknown
- name: Build
run: cargo build --verbose
- name: Wasm build
run: cargo build --target wasm32-unknown-unknown
- name: Build examples
run: cargo build --examples --verbose
- name: Run tests

Loading…
Cancel
Save