From eba5227ebc642f1426371cda872bb9f5baa83916 Mon Sep 17 00:00:00 2001 From: Adam Wick Date: Sun, 24 Sep 2023 17:25:55 -0700 Subject: [PATCH] reorder the format and build stages --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 49785b2..bd293e1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -25,9 +25,9 @@ jobs: toolchain: ${{ matrix.rust }} default: true override: true - - name: Build - run: cargo build - name: Format Check run: cargo fmt --check + - name: Build + run: cargo build - name: Run tests run: cargo test