Skip to content

1.0.4

1.0.4 #31

Workflow file for this run

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 0 * * *'
jobs:
model-health-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- 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