Fix CI
CI / lint_and_test (push) Failing after 10m48s Details

This commit is contained in:
itqop 2025-07-19 00:18:00 +03:00
parent 4f448f2e64
commit 76988e843e
3 changed files with 13 additions and 3 deletions

View File

@ -21,11 +21,19 @@ jobs:
with:
python-version: '3.10'
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install black ruff pytest
pip install -r requirements-dev.txt
- name: Run Black
run: black --check .

4
requirements-dev.txt Normal file
View File

@ -0,0 +1,4 @@
black
ruff
pytest
pytest-asyncio

View File

@ -15,5 +15,3 @@ python-jose[cryptography]
passlib[bcrypt]
tiktoken
httpx
pytest
pytest-asyncio