From 8a42977ad82cedf5e548a41a609e6e409c3de188 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Sat, 14 Sep 2024 17:44:22 -0400 Subject: [PATCH] ci: add `cargo test` step --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9aed8af..97bcc05 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -26,5 +26,7 @@ jobs: run: cargo fmt --all -- --config format_code_in_doc_comments=true --check - name: Build run: cargo build ${{ matrix.build-args }} --all + - name: Test + run: cargo test ${{ matrix.build-args }} - name: Clippy - run: cargo clippy ${{ matrix.build-args }} -- -D warnings \ No newline at end of file + run: cargo clippy ${{ matrix.build-args }} -- -D warnings