Skip to content

🐛 修复 command 类响应器参数的类型注解问题 #16

🐛 修复 command 类响应器参数的类型注解问题

🐛 修复 command 类响应器参数的类型注解问题 #16

Workflow file for this run

name: Pyright Lint
on:
push:
branches:
- main
pull_request_target:
paths:
- "kirami/**"
jobs:
pyright:
name: Pyright Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pdm-project/setup-pdm@v3
with:
python-version: '3.10'
cache: true
- name: Install dependencies
run: pdm install
- name: Add pdm to PATH
run: echo "$(pdm venv --path in-project)/bin" >> $GITHUB_PATH
- name: Run Pyright
uses: jakebailey/pyright-action@v1