Skip to content

ci: 修复静态检查报错问题 #7

ci: 修复静态检查报错问题

ci: 修复静态检查报错问题 #7

Workflow file for this run

name: Static Check
on:
push:
jobs:
static-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "poetry"
- name: Install Dependencies
run: poetry install --all-extras --no-root
- name: Lint With Ruff
run: poetry run ruff check --output-format=github .
- name: Type checking with Pyright
run: poetry run pyright --warnings .
- name: Spelling check with Codespell
run: poetry run codespell -f .