Skip to content

Commit

Permalink
fix: don't enable a11y feature for web
Browse files Browse the repository at this point in the history
  • Loading branch information
wash2 committed May 12, 2023
1 parent 251fecd commit 4fe3bf6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
targets: wasm32-unknown-unknown
- uses: actions/checkout@master
- name: Run checks
run: cargo check --package iced --target wasm32-unknown-unknown
run: cargo check --package iced --target wasm32-unknown-unknown --no-default-features --features "winit tiny-skia"
- name: Check compilation of `tour` example
run: cargo build --package tour --target wasm32-unknown-unknown
run: cargo build --package tour --target wasm32-unknown-unknown --no-default-features --features "winit tiny-skia"
- name: Check compilation of `todos` example
run: cargo build --package todos --target wasm32-unknown-unknown
run: cargo build --package todos --target wasm32-unknown-unknown --no-default-features --features "winit tiny-skia"
- name: Check compilation of `integration` example
run: cargo build --package integration --target wasm32-unknown-unknown
run: cargo build --package integration --target wasm32-unknown-unknown --no-default-features --features "winit tiny-skia"

0 comments on commit 4fe3bf6

Please sign in to comment.