We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cb363b commit 789786bCopy full SHA for 789786b
.github/workflows/ci.yml
@@ -446,7 +446,11 @@ jobs:
446
uses: taiki-e/install-action@v2
447
with:
448
tool: nextest
449
- - name: Rust Tests
+ - 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'
454
run: cargo nextest run --locked --workspace --all-features --no-fail-fast --exclude bench-vortex
455
456
build-java:
0 commit comments