Skip to content

Merge pull request #55 from saileshd1402/update-hf-hub #59

Merge pull request #55 from saileshd1402/update-hf-hub

Merge pull request #55 from saileshd1402/update-hf-hub #59

Workflow file for this run

name: Python Test with LLM
on:
push:
branches:
- main # Change this to your main branch
pull_request:
branches:
- main
jobs:
test:
name: Test with LLM
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: pip install pytest -r requirements.txt
working-directory: ./llm
- name: Run tests
run: python3 -m pytest tests -v
working-directory: ./llm