From 8f9939beb5646c51784528bbd030238df44dbc47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABlle=20Huisman?= Date: Wed, 27 Aug 2025 09:33:05 +0200 Subject: [PATCH] ci: disable test step (#151) --- .github/workflows/ci.yml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c426fb..4811138 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,19 +48,20 @@ jobs: - name: Check formatting run: cargo fmt --all --check - test: - name: Test - runs-on: ubuntu-latest + # This repository has no tests, so save some time by skipping test builds for all components. + # test: + # name: Test + # runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v5 + # steps: + # - name: Checkout + # uses: actions/checkout@v5 - - name: Set up Rust toolchain - uses: actions-rust-lang/setup-rust-toolchain@v1 - with: - components: clippy, rustfmt - target: wasm32-unknown-unknown + # - name: Set up Rust toolchain + # uses: actions-rust-lang/setup-rust-toolchain@v1 + # with: + # components: clippy, rustfmt + # target: wasm32-unknown-unknown - - name: Test - run: cargo test --all-features --locked --release + # - name: Test + # run: cargo test --all-features --locked --release