Skip to content

Update benchmark_requests.py #299

Update benchmark_requests.py

Update benchmark_requests.py #299

Workflow file for this run

name: Lint
on:
push:
branches-ignore:
- main
- dev
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
lint:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [ "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Ruff
run: pip install ruff
- name: Run Ruff Lint
run: |
ruff check . --output-format=github
- name: Run Ruff Format Check
run: |
ruff format . --check