From 31e65d96d46ca24c37efb3b68659147f3bd84aed Mon Sep 17 00:00:00 2001 From: DarkSky <25152247+darkskygit@users.noreply.github.com> Date: Wed, 18 Jun 2025 20:20:00 +0800 Subject: [PATCH] fix(server): ci nextest (#12851) ## Summary by CodeRabbit - **Chores** - Updated testing workflow to use a specific version of the testing tool for improved consistency across jobs. --- .github/workflows/build-test.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 932ee85464..3bba0932e4 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -734,7 +734,9 @@ jobs: toolchain: nightly components: miri - name: Install latest nextest release - uses: taiki-e/install-action@nextest + uses: taiki-e/install-action@v2 + with: + tool: nextest@0.9.98 - name: Miri Code Check continue-on-error: true @@ -756,7 +758,9 @@ jobs: with: toolchain: stable - name: Install latest nextest release - uses: taiki-e/install-action@nextest + uses: taiki-e/install-action@v2 + with: + tool: nextest@0.9.98 - name: Loom Thread Test run: | @@ -855,7 +859,9 @@ jobs: no-build: 'true' - name: Install latest nextest release - uses: taiki-e/install-action@nextest + uses: taiki-e/install-action@v2 + with: + tool: nextest@0.9.98 - name: Run tests run: cargo nextest run --workspace --exclude affine_server_native --features use-as-lib --release --no-fail-fast