Skip to content

Merge pull request #6 from juntao/patch-1 #9

Merge pull request #6 from juntao/patch-1

Merge pull request #6 from juntao/patch-1 #9

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
LLM_API_BASE: "https://0x9fcf7888963793472bfcb8c14f4b6b47a7462f17.gaia.domains/v1"
LLM_MODEL: "Qwen2.5-Coder-3B-Instruct"
LLM_EMBED_MODEL: "gte-Qwen2-1.5B-instruct"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest