Skip to content

Updated The Readme file #34

Updated The Readme file

Updated The Readme file #34

Workflow file for this run

name: LLM RAG testing
on:
push:
branches:
- main
- dev
- test-and-cicd-workflow
pull_request:
branches:
- main
- dev
- test-and-cicd-workflow
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
pytest tests/