ci(rust): cover Vertex auth feature

Co-Authored-By: Ishaan Jaffer <155045088+ishaan-berri@users.noreply.github.com>
This commit is contained in:
Devin AI 2026-07-19 02:39:23 +00:00
parent e0f2e5ee11
commit 0ca7557ca3

View file

@ -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