fix(ci): avoid broken windows tauri lib harness

This commit is contained in:
NimBold
2026-06-23 22:36:50 +03:30
parent b726d3a310
commit 941d05112b
+7
View File
@@ -61,8 +61,15 @@ jobs:
pkg-config
- run: npm ci
- name: Test Rust backend
if: runner.os != 'Windows'
working-directory: src-tauri
run: cargo test --all-targets --target ${{ matrix.target }}
- name: Test Rust backend
if: runner.os == 'Windows'
working-directory: src-tauri
run: |
cargo test --tests --target ${{ matrix.target }}
cargo test --lib --no-run --target ${{ matrix.target }}
- name: Provision locked engines
if: runner.os != 'macOS'
run: node scripts/provision-engines.js --target ${{ matrix.target }}