Skip to content

完善插件管理器的消息处理机制并启用多个插件 #3

完善插件管理器的消息处理机制并启用多个插件

完善插件管理器的消息处理机制并启用多个插件 #3

Workflow file for this run

name: Run Tests
on:
push:
branches:
- refactoring-v3-mvp
pull_request:
branches:
- refactoring-v3-mvp
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Run tests
run: |
python -m pytest