Skip to content

refactor: Agent 页面拆分为盘中监控/提案管理双子Tab #86

refactor: Agent 页面拆分为盘中监控/提案管理双子Tab

refactor: Agent 页面拆分为盘中监控/提案管理双子Tab #86

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