feat: add queue-depth rate limit guard to vLLM runtime (#2205) #1220
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: Python Lint | |
| on: | |
| push: | |
| paths: | |
| - '**.py' | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - '**.py' | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Ruff linter | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| # Update output format to enable automatic inline annotations. | |
| args: check --output-format=github . | |
| # Check formatting without making changes. | |
| - name: Ruff format check | |
| run: ruff format --check . |