feat: 完善会话分享与频道导入 #239
Workflow file for this run
This file contains hidden or 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: CI Ruff | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - backend/assets/** | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - backend/assets/** | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install ruff==0.15.9 | |
| - name: Run Ruff Check | |
| run: ruff check --output-format=github backend executor executor_manager | |
| - name: Run Ruff Format Check | |
| run: ruff format --check backend executor executor_manager |