From 0ca7557ca37433c64180c5a7d25f9dce7dc7b5e8 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 02:39:23 +0000 Subject: [PATCH] ci(rust): cover Vertex auth feature Co-Authored-By: Ishaan Jaffer <155045088+ishaan-berri@users.noreply.github.com> --- .github/workflows/test-rust.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-rust.yml b/.github/workflows/test-rust.yml index 21e1bcb90c6..3a2c550443d 100644 --- a/.github/workflows/test-rust.yml +++ b/.github/workflows/test-rust.yml @@ -64,8 +64,14 @@ jobs: - name: Run Clippy with Bedrock auth run: cargo clippy -p litellm-core --all-targets --features bedrock-auth --locked -- -D warnings + - name: Run Clippy with Vertex auth + run: cargo clippy -p litellm-core --all-targets --features vertex-auth --locked -- -D warnings + - name: Run Rust tests run: cargo test --workspace --locked - name: Run core tests with Bedrock auth run: cargo test -p litellm-core --features bedrock-auth --locked + + - name: Run core tests with Vertex auth + run: cargo test -p litellm-core --features vertex-auth --locked