Skip to content

Endpoints for LLM, Embedder and Plugin settings #196

Endpoints for LLM, Embedder and Plugin settings

Endpoints for LLM, Embedder and Plugin settings #196

Workflow file for this run

name: Cheshire-Cat Action on Pull Requests
on:
pull_request:
branches:
- "main"
- "develop"
push:
branches:
- "main"
- "develop"
jobs:
pylint:
name: "Coding Standards"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./core
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Download
uses: actions/checkout@v3
- name: Prepare Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Download python dependencies
run: pip install .[dev]
- name: Pylint
run: pylint -f actions ./
test:
needs: [ pylint ]
name: "Run Tests"
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- name: Cat up
run: docker-compose up -d
- name: Test
run: docker exec cheshire_cat_core python -m pytest --color=yes .
- name: Cat down
run: docker-compose down