Update model-check.yml #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LLM Healthcheck | |
on: | |
push: | |
branches: | |
- "main" | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
branches: | |
- "*" | |
paths-ignore: | |
- "**.md" | |
workflow_dispatch: | |
release: | |
types: [published, edited] | |
schedule: | |
- cron: '0 12 */7 * *' | |
jobs: | |
model-health-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: 'pip' | |
- name: Install dependencies | |
working-directory: ./ | |
run: | | |
pip install --upgrade pip | |
pip install pytest | |
pip install huggingface_hub | |
pip install pathlib | |
- name: Run model health check | |
working-directory: ./ | |
run: | | |
python -m pytest -v --color=yes test.py |