Skip to content

Commit 789786b

Browse files
committed
fix
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 2cb363b commit 789786b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,11 @@ jobs:
446446
uses: taiki-e/install-action@v2
447447
with:
448448
tool: nextest
449-
- name: Rust Tests
449+
- name: Rust Tests (Windows)
450+
if: matrix.os == 'windows-x64'
451+
run: cargo nextest run --locked --workspace --all-features --no-fail-fast --exclude bench-vortex --exclude vortex-python --exclude vortex-duckdb
452+
- name: Rust Tests (Other)
453+
if: matrix.os != 'windows-x64'
450454
run: cargo nextest run --locked --workspace --all-features --no-fail-fast --exclude bench-vortex
451455

452456
build-java:

0 commit comments

Comments
 (0)