From 6a87a13e3238eb973f6bccda482a77f0d9e62b80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Mon, 26 Aug 2024 13:12:42 -0300 Subject: [PATCH] ci: Add cargo test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8356cc74..f54e3c42 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,6 +15,8 @@ jobs: run: cargo fmt -- --check - name: Build run: cargo build --verbose + - name: Test + run: cargo test --verbose -- --nocapture build: needs: test