Some checks failed
publish docs / publish-docs (push) Has been cancelled
release-please / release-please (push) Has been cancelled
tests / setup (push) Has been cancelled
tests / ${{ matrix.quality-command }} (black) (push) Has been cancelled
tests / ${{ matrix.quality-command }} (mypy) (push) Has been cancelled
tests / ${{ matrix.quality-command }} (ruff) (push) Has been cancelled
tests / test (push) Has been cancelled
tests / all_checks_passed (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
31 lines
774 B
YAML
31 lines
774 B
YAML
name: "Install Dependencies"
|
|
description: "Action to build the project dependencies from the main versions"
|
|
inputs:
|
|
python_version:
|
|
required: true
|
|
type: string
|
|
default: "3.11.4"
|
|
poetry_version:
|
|
required: true
|
|
type: string
|
|
default: "1.8.3"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Poetry
|
|
uses: snok/install-poetry@v1
|
|
with:
|
|
version: ${{ inputs.poetry_version }}
|
|
virtualenvs-create: true
|
|
virtualenvs-in-project: false
|
|
installer-parallel: true
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ inputs.python_version }}
|
|
cache: "poetry"
|
|
- name: Install Dependencies
|
|
run: poetry install --extras "ui vector-stores-qdrant" --no-root
|
|
shell: bash
|
|
|