We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27bea2a commit 806edbfCopy full SHA for 806edbf
.github/workflows/ci-rust.yaml
@@ -76,7 +76,12 @@ jobs:
76
ort-version: ${{ env.ORT_VERSION }}
77
78
- name: Run unit tests
79
- run: cargo test --workspace --exclude kreuzberg-e2e-generator --all-features
+ run: |
80
+ if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
81
+ cargo test --workspace --exclude kreuzberg-e2e-generator --no-default-features --features "full,server,cli"
82
+ else
83
+ cargo test --workspace --exclude kreuzberg-e2e-generator --all-features
84
+ fi
85
shell: bash
86
87
- name: Cleanup Rust cache
0 commit comments