Skip to content

Commit 49ed97a

Browse files
committed
fix: #227 exclude web targets from workspace tests
1 parent b16a239 commit 49ed97a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: $${{ always() }} # run even if clippy failed
3737
run: cargo doc --workspace --no-deps --locked
3838
- name: Run tests
39-
run: cargo test --workspace --verbose --locked --exclude oxvg_napi
39+
run: cargo test --workspace --verbose --locked --exclude oxvg_napi --exclude oxvg_wasm
4040

4141
toml:
4242
name: Toml formatting

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
target/
4949
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }}
5050
- name: Run tests
51-
run: cargo test --verbose --workspace --profile release --target=${{ matrix.settings.target }} --exclude oxvg_napi
51+
run: cargo test --verbose --workspace --profile release --target=${{ matrix.settings.target }} --exclude oxvg_napi --exclude oxvg_wasm
5252
- name: Build
5353
run: cargo build --verbose --bins --profile release --target=${{ matrix.settings.target }}
5454
- name: List

0 commit comments

Comments
 (0)