Skip to content

Update index.md to fix minor typo #305

Update index.md to fix minor typo

Update index.md to fix minor typo #305

Workflow file for this run

name: Python Unittest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
TEST_SCHEMA_API_KEY: ${{ secrets.TEST_SCHEMA_API_KEY }}
run: |
python run_tests.py