From c2e650b03b0a4ae7345256f6dbb167e4b65ea5ea Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sat, 30 Dec 2023 21:46:37 -0500 Subject: [PATCH] Update test runner to cargo nextest run --- .github/workflows/pull-request.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5a9491d..7bc7f91 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -1,5 +1,9 @@ name: Pull Request +env: + CARGO_TERM_COLOR: always + NEXTEST_RETRIES: 10 + on: push: branches: @@ -24,8 +28,8 @@ jobs: with: toolchain: stable - - name: Run cargo test - run: cargo test + - name: Run cargo nextest run + uses: taiki-e/install-action@nextest format: name: cargo fmt --all -- --check