From ce9fbe59b71323d5c9cf58c455fe8ef97d26a00a Mon Sep 17 00:00:00 2001 From: Przemek Rzad Date: Tue, 23 Jul 2024 14:51:49 +0200 Subject: [PATCH] Skip WASM build for tests and docs (#10) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f737b3..41e6706 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: