From f7b89bcc59dbe40d6eb8413f58de38852f55869b Mon Sep 17 00:00:00 2001 From: Diana Carvalho Date: Fri, 20 Jun 2025 11:50:54 +0100 Subject: [PATCH] ci: Fix nextest installation Took 14 minutes --- .github/workflows/tests-and-lints-template.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests-and-lints-template.yaml b/.github/workflows/tests-and-lints-template.yaml index 6f85b08..91e1da9 100644 --- a/.github/workflows/tests-and-lints-template.yaml +++ b/.github/workflows/tests-and-lints-template.yaml @@ -72,7 +72,9 @@ jobs: cache-on-failure: true - name: Install latest nextest release - uses: taiki-e/install-action@b239071b2aedda3db20530301c2d88cd538e90d3 + uses: taiki-e/install-action@v2 + with: + tool: nextest@0.9.98 - name: Test run: cargo nextest run --workspace --lib --all-targets && cargo test --doc