Skip to content

Commit

Permalink
Add wasm32 build to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
davxy committed Nov 30, 2023
1 parent 79ccf49 commit 167044a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ jobs:
- name: Build
run: cargo build --verbose

build-wasm32:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: wasm32-unknown-unknown
- name: Build
run: cargo build --verbose --no-default-features --target wasm32-unknown-unknown

test:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 167044a

Please sign in to comment.