Skip to content

Added integration: LlamaIndex #20

Added integration: LlamaIndex

Added integration: LlamaIndex #20

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install uv
uv sync --group dev
- name: Lint with ruff
run: |
uv run ruff check .