This commit is contained in:
Stephen Chung 2022-10-12 08:13:40 +08:00
commit b330fc22e0

View File

@ -110,6 +110,33 @@ jobs:
with:
command: build
args: --manifest-path=no_std/no_std_test/Cargo.toml ${{matrix.flags}}
wasm:
name: Check Wasm build
runs-on: ubuntu-latest
strategy:
matrix:
flags:
# These fail currently, future PR should fix them
# - ""
# - "--features wasm-bindgen"
- "--no-default-features"
- "--no-default-features --features wasm-bindgen"
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_MSRV }}
override: true
target: wasm32-unknown-unknown
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --target wasm32-unknown-unknown ${{matrix.flags}}
rustfmt:
name: Check Formatting
runs-on: windows-latest