From 63c25159301be47d4a571dce727486555e19d47e Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Fri, 10 Jan 2025 18:46:58 +0000 Subject: [PATCH] Build before installing nextest More likely to find interesting failures early --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6b37ac79..9e6cba44 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -94,12 +94,12 @@ jobs: # Clippy checks can vary between versions in a way that makes it a bit # fiddly to satisfy them all, so only insist that they pass on stable. run: cargo clippy --all-targets --all-features -- -D warnings + - name: Build + run: cargo build --all-targets - uses: taiki-e/install-action@v2 name: Install nextest using install-action with: tool: nextest - - name: Build - run: cargo build --all-targets - name: Test run: cargo test --workspace - run: cargo update