Skip to content

Commit

Permalink
updated the llm_handler with caching
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanehachcham committed Oct 27, 2023
1 parent 9a10382 commit aa6312e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry==1.4.2
- name: Install dependencies
run: |
poetry install
- name: Run Flake8
run: |
poetry run flake8 --max-line-length=120 mentor_mingle

- name: Start containers
run: docker-compose -f "docker-compose.yaml" up -d --build

- name: Run flake8 linting
run: docker-compose exec -T app-service flake8 --max-line-length=120 mentor_mingle

- name: Run Tests
run: |
poetry run pytest
run: docker-compose exec -T app-service pytest
Binary file modified tests/__pycache__/test_llm_handler.cpython-311-pytest-7.4.2.pyc
Binary file not shown.

0 comments on commit aa6312e

Please sign in to comment.