From 17372e30e8cf78cb77faae1e9b4d064137a4fe98 Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Thu, 15 Feb 2024 18:19:26 +0100 Subject: [PATCH] Refactor sql database so it supports sqlite, added new vectordb type and improved a few things. ran pylint --- .github/workflows/py_lint.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/py_lint.yaml b/.github/workflows/py_lint.yaml index faee00f88..399133325 100644 --- a/.github/workflows/py_lint.yaml +++ b/.github/workflows/py_lint.yaml @@ -15,10 +15,17 @@ jobs: with: python-version: '3.9' # Specify the Python version you want to use + - name: Install Poetry + run: | + curl -sSL https://install.python-poetry.org | python3 - # Install Poetry + + - name: Configure Poetry + run: | + poetry config virtualenvs.create false # Configure poetry to not create a new virtual environment + - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install pylint # Install pylint + poetry install # Install the dependencies specified in pyproject.toml - name: Run pylint run: |