aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/wasm.yml
blob: 35166ecc72f3be8c506aed2bef1f4545b0cfcfb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: WASM Target

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
      with:
          submodules: recursive
    - name: Install WASM tool chain
      run: rustup target add wasm32-unknown-unknown
    - name: Check WASM Target Compiles
      run: cargo build --verbose --target=wasm32-unknown-unknown