heffnt's picture
Add initial project files including Gradio app, Git LFS configuration, and CI workflows
1fea2ad
raw
history blame contribute delete
469 Bytes
name: Run chatbot test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install pytest gradio[oauth] huggingface_hub
- name: Run pytest with HF token
env:
HF_TOKEN: ${{ secrets.Smart_Confidant_Token }}
run: pytest -q