mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-05 08:07:05 +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
464 B
YAML
20 lines
464 B
YAML
name: Validate model_prices_and_context_window.json
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
validate-model-prices-json:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Validate model_prices_and_context_window.json
|
|
run: |
|
|
jq empty model_prices_and_context_window.json
|