From e94d908a634011e614c2014b4146938670d6708a Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 13 Oct 2023 13:04:31 +0800 Subject: [PATCH] test --- .github/workflows/ci.yml | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3aac263519d8a..6486d3da605368 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,9 +38,9 @@ jobs: with: save-cache: ${{ github.ref_name == 'main' }} - - name: Install cargo-nextest - if: runner.os != 'Windows' - uses: taiki-e/install-action@cargo-nextest + # - name: Install cargo-nextest + # if: runner.os != 'Windows' + # uses: taiki-e/install-action@cargo-nextest - name: Cargo check run: cargo ck @@ -48,12 +48,11 @@ jobs: # NAPI crashes nextest on windows # https://github.com/napi-rs/napi-rs/issues/1405 - name: Build cache by Cargo Check and Cargo Test - if: runner.os == 'Windows' run: cargo test run --no-run --workspace --all-features - - name: Build cache by Cargo Check and Cargo Test - if: runner.os != 'Windows' - run: cargo nextest run --no-run --workspace --all-features + # - name: Build cache by Cargo Check and Cargo Test + # if: runner.os != 'Windows' + # run: cargo nextest run --no-run --workspace --all-features wasm: name: Check Wasm @@ -191,14 +190,13 @@ jobs: - name: Install Rust Toolchain uses: ./.github/actions/rustup - - name: Install cargo-nextest - if: runner.os != 'Windows' - uses: taiki-e/install-action@cargo-nextest + # - name: Install cargo-nextest + # if: runner.os != 'Windows' + # uses: taiki-e/install-action@cargo-nextest # NAPI crashes nextest on windows # https://github.com/napi-rs/napi-rs/issues/1405 - - if: runner.os == 'Windows' - run: cargo test + - run: cargo test - - if: runner.os != 'Windows' - run: cargo nextest run + # - if: runner.os != 'Windows' + # run: cargo nextest run