Skip to content

TCP networking perf + Aria hot-path batching #129

TCP networking perf + Aria hot-path batching

TCP networking perf + Aria hot-path batching #129

Workflow file for this run

name: ruff
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
ruff:
name: ruff (lint + format)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14"
cache: "pip"
- name: Install Ruff
run: |
python -m pip install --upgrade pip
python -m pip install "ruff==0.15.12"
- name: Ruff lint (must pass)
run: ruff check .
- name: Ruff format check (must be already formatted)
run: ruff format --check .