From ab1c2bacb79b78aca95f36f13678a60ddbeb43b2 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 28 May 2024 16:18:01 +0200 Subject: [PATCH] ci: run "cargo test" in "cargo test" jobs instead of "cargo check" --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a53054a..eccb9ff8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,9 +53,9 @@ jobs: - run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV if: matrix.os == 'windows-latest' - - name: Check + - name: Test run: | - cargo check + cargo test fmt: name: cargo fmt --all -- --check