From 7f0df6f943a17809ac95554eb1dff0e007340d5c Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Thu, 31 Jul 2025 05:41:42 +0400 Subject: [PATCH] build: run all tests in one step --- .github/workflows/lint-rs.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint-rs.yml b/.github/workflows/lint-rs.yml index 0843bef..fdbc2b0 100644 --- a/.github/workflows/lint-rs.yml +++ b/.github/workflows/lint-rs.yml @@ -109,16 +109,10 @@ jobs: run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::all working-directory: src-tauri - - name: Run Rust unit tests - run: cargo test --lib + - name: Run Rust tests + run: cargo test working-directory: src-tauri - - name: Run integration tests - run: ./scripts/run-integration-tests.sh - env: - CI: true - continue-on-error: true - - name: Run cargo audit security check run: cargo audit working-directory: src-tauri