From 4897aad492d3222ffa8a3e11fb8ffcc79bd2d8d2 Mon Sep 17 00:00:00 2001 From: Keenan Tims Date: Sun, 19 Mar 2023 12:34:25 -0700 Subject: [PATCH] Workflow: build tests before running --- .github/workflows/commit.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index 8f7b248..e9feae8 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -16,5 +16,7 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Build tests + run: cargo test --no-run --verbose - name: Run tests - run: cargo test --verbose + run: cargo test