From 77a4e96022f5e6919612487b70bc5606e283481d Mon Sep 17 00:00:00 2001 From: Avinash Sajjanshetty Date: Sat, 23 Aug 2025 13:41:19 +0530 Subject: [PATCH] run encryption tests in CI --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 12073def9..b354dd8e3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -39,7 +39,9 @@ jobs: - name: Build run: cargo build --verbose - name: Test Encryption - run: cargo test --features encryption --color=always --test integration_tests query_processing::encryption + run: | + cargo test --features encryption --color=always --test integration_tests query_processing::encryption + cargo test --features encryption --color=always --lib storage::encryption - name: Test env: RUST_LOG: ${{ runner.debug && 'turso_core::storage=trace' || '' }}