Skip to content

feat: add queue-depth rate limit guard to vLLM runtime (#2205) #1220

feat: add queue-depth rate limit guard to vLLM runtime (#2205)

feat: add queue-depth rate limit guard to vLLM runtime (#2205) #1220

Workflow file for this run

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 .