Skip to content

Commit bf0deae

Browse files
committed
fix: don't enable a11y feature for web
1 parent 251fecd commit bf0deae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
targets: wasm32-unknown-unknown
3333
- uses: actions/checkout@master
3434
- name: Run checks
35-
run: cargo check --package iced --target wasm32-unknown-unknown
35+
run: cargo check --package iced --target wasm32-unknown-unknown --no-default-features --features "wgpu"
3636
- name: Check compilation of `tour` example
37-
run: cargo build --package tour --target wasm32-unknown-unknown
37+
run: cargo build --package tour --target wasm32-unknown-unknown --no-default-features --features "wgpu"
3838
- name: Check compilation of `todos` example
39-
run: cargo build --package todos --target wasm32-unknown-unknown
39+
run: cargo build --package todos --target wasm32-unknown-unknown --no-default-features --features "wgpu"
4040
- name: Check compilation of `integration` example
41-
run: cargo build --package integration --target wasm32-unknown-unknown
41+
run: cargo build --package integration --target wasm32-unknown-unknown --no-default-features --features "wgpu"

0 commit comments

Comments
 (0)