Skip to content

updated the llm_handler with caching #19

updated the llm_handler with caching

updated the llm_handler with caching #19

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- 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: 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: docker-compose exec -T app-service pytest