Skip to content

fix(monitor): 智能监控消息流回归卡片样式(兼容新版 LLM 输出格式) #144

fix(monitor): 智能监控消息流回归卡片样式(兼容新版 LLM 输出格式)

fix(monitor): 智能监控消息流回归卡片样式(兼容新版 LLM 输出格式) #144

Workflow file for this run

name: Python Tests
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: python -m pytest -q