Skip to content

fix: wire client_timeout and keep_alive_timeout through to Actix #1590

fix: wire client_timeout and keep_alive_timeout through to Actix

fix: wire client_timeout and keep_alive_timeout through to Actix #1590

Workflow file for this run

name: Lint PR
on:
pull_request:
branches: [main]
paths:
- "**/*.py"
- "pyproject.toml"
- ".github/workflows/lint-pr.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
UV_SYSTEM_PYTHON: 1
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies with uv
run: |
uv pip install ruff isort black
- name: Run linters
run: |
uv run ruff check .
uv run isort --check-only --diff .