Skip to content

Updating documentation to include local LLM use. #2

Updating documentation to include local LLM use.

Updating documentation to include local LLM use. #2

Workflow file for this run

name: Build
on:
pull_request:
branches: ['main']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages and dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -e .
pip install -e. pytest mock
- name: Test with pytest
if: matrix.python-version != '3.10'
run: |
pytest tests
- name: Test CLI
if: matrix.python-version != '3.10'
run: |
python -m venv .venv
. .venv/bin/activate
pip install --editable .
kait debug --help