Skip to content

Removed phi-1_5 from model_config.json (#30) #10

Removed phi-1_5 from model_config.json (#30)

Removed phi-1_5 from model_config.json (#30) #10

Workflow file for this run

name: Pytest tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-pytest:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Python dependencies
run: pip install pytest -r llm/requirements.txt
- name: Run pytests
run: cd llm && python3 -m pytest tests -v