Beks1401's picture
Fixed Actions
733b864
Raw
History Blame Contribute Delete
464 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.HUGGINGFACETOKEN }}
run: pytest -q