🧑‍💻 Develop: 添加 Pyright 检查 (#2194)

This commit is contained in:
Ju4tCode
2023-07-17 20:42:15 +08:00
committed by GitHub
parent 6ebeefed79
commit cb9fcae64c
6 changed files with 60 additions and 8 deletions

26
.github/workflows/pyright.yml vendored Normal file
View File

@ -0,0 +1,26 @@
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@v3
- 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