Skip to content

Commit

Permalink
Add wasm32 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gyscos committed Oct 10, 2023
1 parent ffb7a9b commit 8bce1c4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Wasm

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Wasm target
run: rustup target add wasm32-unknown-unknown
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Build
run: cargo build --verbose
- name: Build with feature thin
run: cargo build --verbose --features thin

0 comments on commit 8bce1c4

Please sign in to comment.