📝 Docs: 修复事件后处理函数类型 docstring 错误 (#2459) #357
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: Pyright Lint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "nonebot/**" | |
- "packages/**" | |
- "tests/**" | |
jobs: | |
pyright: | |
name: Pyright Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python environment | |
uses: ./.github/actions/setup-python | |
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH | |
- name: Run Pyright | |
uses: jakebailey/pyright-action@v1 |