summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/integration.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index fa1cb997..eb54d170 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -7,10 +7,15 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable, beta]
+ include:
+ - os: ubuntu-latest
+ rust: stable
+ targets: 'wasm32-unknown-unknown'
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
+ targets: ${{ matrix.targets }}
- name: Install libinput
if: matrix.os == 'ubuntu-latest'
run: |
@@ -19,3 +24,6 @@ jobs:
- uses: actions/checkout@master
- name: Run tests
run: cargo test --verbose --all --all-features
+ - name: Build tour for WebAssembly
+ if: matrix.targets == 'wasm32-unknown-unknown'
+ run: cargo build --verbose --package iced_tour --lib --target wasm32-unknown-unknown