diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55628815..9574c327 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,4 +167,4 @@ jobs: sarif_file: clippy-results.sarif wait-for-processing: true - name: Report status - run: cargo clippy --workspace --all-features --all-targets -- -D warnings --allow deprecated + run: cargo clippy --workspace --all-targets -- -D warnings --allow deprecated diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index f8e66ab2..101b7e72 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -35,8 +35,9 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Default features run: cargo test --workspace - - name: All features - run: cargo test --workspace --all-features +# [ToDo LQ] Re-enable --all-features once the issue is resolved in Tantivy (zstd-safe). This is an experimental feature anyway. +# - name: All features +# run: cargo test --workspace --all-features - name: No-default features run: cargo test --workspace --no-default-features latest: @@ -54,7 +55,8 @@ jobs: run: cargo update - name: Default features run: cargo test --workspace --all-targets - - name: All features - run: cargo test --workspace --all-targets --all-features +# [ToDo LQ] Re-enable --all-features once the issue is resolved in Tantivy (zstd-safe). This is an experimental feature anyway. +# - name: All features +# run: cargo test --workspace --all-targets --all-features - name: No-default features run: cargo test --workspace --all-targets --no-default-features