From 46e803266468c200f6599f0bfbd525a47172721a Mon Sep 17 00:00:00 2001 From: Henry A Schimke Date: Thu, 16 Feb 2023 16:41:24 +0900 Subject: [PATCH] Update rust.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a cargo check —release before trying to build, possibly short circuit on broken code --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3b4f61c..110bef0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,6 +16,8 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Check + run: cargo check --release --verbose - name: Build run: cargo build --release --verbose - name: Run tests