mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Automated supply-chain hardening: - Sync .circleci/, .github/, build scripts from main - Remove dead/dangerous files (security_scans.sh, .pre-commit-config.yaml, etc.) - SHA256-verified NVM installs, pip --only-binary
20 lines
513 B
YAML
20 lines
513 B
YAML
name: "Unit Tests: Proxy Auth & Key Management"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
proxy-auth:
|
|
uses: ./.github/workflows/_test-unit-base.yml
|
|
with:
|
|
test-path: "tests/test_litellm/proxy/auth tests/test_litellm/proxy/hooks tests/test_litellm/proxy/policy_engine tests/test_litellm/proxy/client"
|
|
workers: 2
|
|
reruns: 2
|