Skip to content

Merge branch 'main' of https://github.com/samadpls/BestRAG #18

Merge branch 'main' of https://github.com/samadpls/BestRAG

Merge branch 'main' of https://github.com/samadpls/BestRAG #18

Workflow file for this run

name: Run Pytest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Run Pytest
run: |
python3 -m pytest bestrag/tests/test_best_rag.py