diff options
author | 2023-11-12 03:17:02 +0100 | |
---|---|---|
committer | 2023-11-12 03:17:02 +0100 | |
commit | ae2d59ae96ba1ec2daf6979beff0e3913ba9e0b8 (patch) | |
tree | e1618af533c3430c7f87c819b1455663ade90199 /.github/workflows/test.yml | |
parent | 178521e8121d6f54dbaf2d0dbeb3892f7555b96a (diff) | |
download | iced-ae2d59ae96ba1ec2daf6979beff0e3913ba9e0b8.tar.gz iced-ae2d59ae96ba1ec2daf6979beff0e3913ba9e0b8.tar.bz2 iced-ae2d59ae96ba1ec2daf6979beff0e3913ba9e0b8.zip |
Add `check` workflow to ensure `iced_widget` crate compiles
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 215b616b..a08033c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,7 @@ name: Test on: [push, pull_request] jobs: - native: + all: runs-on: ${{ matrix.os }} strategy: matrix: @@ -22,22 +22,3 @@ jobs: run: | cargo test --verbose --workspace cargo test --verbose --workspace --all-features - - web: - runs-on: ubuntu-latest - env: - RUSTFLAGS: --cfg=web_sys_unstable_apis - steps: - - uses: hecrj/setup-rust-action@v1 - with: - rust-version: stable - targets: wasm32-unknown-unknown - - uses: actions/checkout@master - - name: Run checks - run: cargo check --package iced --target wasm32-unknown-unknown - - name: Check compilation of `tour` example - run: cargo build --package tour --target wasm32-unknown-unknown - - name: Check compilation of `todos` example - run: cargo build --package todos --target wasm32-unknown-unknown - - name: Check compilation of `integration` example - run: cargo build --package integration --target wasm32-unknown-unknown |