Fix: 修复结构化并发子依赖取消缓存问题 #1253
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: Ruff Lint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "envs/**" | |
- "nonebot/**" | |
- "packages/**" | |
- "tests/**" | |
- ".github/actions/setup-python/**" | |
- ".github/workflows/ruff.yml" | |
- "pyproject.toml" | |
- "poetry.lock" | |
jobs: | |
ruff: | |
name: Ruff Lint | |
runs-on: ubuntu-latest | |
concurrency: | |
group: pyright-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Ruff Lint | |
uses: chartboost/ruff-action@v1 |