Skip to content

更新readme文档,补充桌面app说明,并向前移动位置 (#5297) #2580

更新readme文档,补充桌面app说明,并向前移动位置 (#5297)

更新readme文档,补充桌面app说明,并向前移动位置 (#5297) #2580

Workflow file for this run

name: Code Format Check
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install UV
run: pip install uv
- name: Install dependencies
run: uv sync
- name: Check code formatting with ruff
run: |
uv run ruff format --check .
- name: Check code style with ruff
run: |
uv run ruff check .