From 2d9839e7e3fa1d1675d953edaad9c00e23b80701 Mon Sep 17 00:00:00 2001 From: tottoto Date: Fri, 29 Nov 2024 01:11:44 +0900 Subject: [PATCH] chore(ci): Use cargo-nextest to speedup test --- .github/workflows/CI.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d7ce9c95c..ea4369a73 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -112,10 +112,13 @@ jobs: - uses: actions/checkout@v4 - uses: hecrj/setup-rust-action@v2 - uses: taiki-e/install-action@protoc + - uses: taiki-e/install-action@hack + - uses: taiki-e/install-action@cargo-nextest - uses: Swatinem/rust-cache@v2 - - run: cargo test --workspace --all-features + - run: cargo nextest run --workspace --all-features env: QUICKCHECK_TESTS: 1000 # run a lot of quickcheck iterations + - run: cargo hack --no-private test --doc --all-features interop: name: Interop Tests