Spaces:
Sleeping
Sleeping
name: Sync to HuggingFace hub | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test-and-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
lfs: true | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run tests | |
run: python test.py | |
- name: Push to hub | |
if: success() | |
env: | |
HF_TOKEN: ${{ secrets.HF_API_KEY }} | |
run: | | |
git push https://IliaLarchenko:$HF_TOKEN@huggingface.co/spaces/IliaLarchenko/interviewer main | |