Skip to content

perf: improve kg storage and retrieval from vector (#23) #55

perf: improve kg storage and retrieval from vector (#23)

perf: improve kg storage and retrieval from vector (#23) #55

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Poetry
run: |
python -m pip install --upgrade pip
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest