ci(config.yml): add black formatting to ci/cd pipeline

This commit is contained in:
Krrish Dholakia 2023-12-27 12:23:10 +05:30
parent c88a8d71f0
commit 9a19c7c599

View file

@ -43,6 +43,13 @@ jobs:
paths:
- ./venv
key: v1-dependencies-{{ checksum ".circleci/requirements.txt" }}
- run:
name: Black Formatting
command: |
cd litellm
python -m pip install black
python -m black .
cd ..
- run:
name: Linting Testing
command: |