Skip to content

Refactor to support Ollama #347

Refactor to support Ollama

Refactor to support Ollama #347

Workflow file for this run

name: Basic Integration Tests
on:
pull_request: {}
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install pip
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run tests
env:
VANNA_API_KEY: ${{ secrets.VANNA_API_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}
run: tox -e py310