📝 doc: 更新README.md,添加插件介绍、安装方法、配置项及使用说明 #4
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: Ruff Lint | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
paths: | |
- src/nonebot_plugin_hanime/** # src/nonebot_plugin_hanime/下的文件发生变化时触发 | |
- pyproject.toml | |
jobs: | |
ruff: | |
name: Ruff Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Ruff | |
uses: chartboost/ruff-action@v1 | |
with: | |
version: 0.7.0 |