Skip WASM build for tests and docs (#7)

This commit is contained in:
Przemek Rzad
2024-07-23 14:51:57 +02:00
committed by GitHub
parent a9e0db20dd
commit a41ab75c30
+2 -2
View File
@@ -48,11 +48,11 @@ jobs:
timeout-minutes: 30
- name: Run the tests
run: cargo test
run: SKIP_WASM_BUILD=1 cargo test
timeout-minutes: 15
- name: Build the docs
run: cargo doc --all-features --workspace --no-deps
run: SKIP_WASM_BUILD=1 cargo doc --workspace --no-deps
timeout-minutes: 15
build-docker: