feat: 在工作流中加入对 JKit 配置的临时修改,以避免简书系统问题导致的数据校验失败 #13
Workflow file for this run
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: Static Check | |
on: | |
push: | |
jobs: | |
static-check-backend: | |
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 . |