From 7ed7bceacb9aa6a9e39735eb340940f5db810b13 Mon Sep 17 00:00:00 2001 From: NimBold Date: Tue, 23 Jun 2026 22:17:06 +0330 Subject: [PATCH] fix(ci): isolate backend tests from engine staging --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4662f38..74b6515 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,10 +63,10 @@ jobs: - name: Provision locked engines if: runner.os != 'macOS' run: node scripts/provision-engines.js --target ${{ matrix.target }} + - name: Test Rust backend + working-directory: src-tauri + run: cargo test --all-targets --target ${{ matrix.target }} - name: Stage and verify engines run: | node scripts/stage-engines.js --target ${{ matrix.target }} node scripts/verify-binaries.js --staged --target ${{ matrix.target }} - - name: Test Rust backend - working-directory: src-tauri - run: cargo test --all-targets --target ${{ matrix.target }}