Update docs

This commit is contained in:
Vasilije 2024-03-14 19:56:40 +01:00
parent c41cb0cddf
commit 332da20aca
2 changed files with 33 additions and 33 deletions

View file

@ -1,32 +1,32 @@
name: Python Linting #name: Python Linting
#
on: #on:
push: # push:
branches: [ main ] # This will trigger the workflow on pushes to the main branch # branches: [ main ] # This will trigger the workflow on pushes to the main branch
pull_request: # This will trigger the workflow on any pull request to any branch # pull_request: # This will trigger the workflow on any pull request to any branch
#
jobs: #jobs:
lint: # lint:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: # steps:
- uses: actions/checkout@v3 # - uses: actions/checkout@v3
- name: Set up Python # - name: Set up Python
uses: actions/setup-python@v4 # uses: actions/setup-python@v4
with: # with:
python-version: '3.11' # Specify the Python version you want to use # python-version: '3.11' # Specify the Python version you want to use
#
- name: Install Poetry # - name: Install Poetry
run: | # run: |
curl -sSL https://install.python-poetry.org | python3 - # Install Poetry # curl -sSL https://install.python-poetry.org | python3 - # Install Poetry
#
- name: Configure Poetry # - name: Configure Poetry
run: | # run: |
poetry config virtualenvs.create false # Configure poetry to not create a new virtual environment # poetry config virtualenvs.create false # Configure poetry to not create a new virtual environment
#
- name: Install dependencies # - name: Install dependencies
run: | # run: |
poetry install # Install the dependencies specified in pyproject.toml # poetry install # Install the dependencies specified in pyproject.toml
#
- name: Run pylint # - name: Run pylint
run: | # run: |
pylint $(git ls-files '*.py') # Run pylint on all Python files in the repository # pylint $(git ls-files '*.py') # Run pylint on all Python files in the repository

View file

@ -23,7 +23,7 @@ We leverage Neo4j to do the heavy lifting and dlt to load the data, and we've bu
pip install -U cognee pip install -U cognee
``` ```
You can also check out our [cookbook](./examples/index.md) to learn more about how to use cognee. [//]: # (You can also check out our [cookbook](./examples/index.md) to learn more about how to use cognee.)