Skip to content

docs: update README with context manager, timeout, and error handling #22

docs: update README with context manager, timeout, and error handling

docs: update README with context manager, timeout, and error handling #22

Workflow file for this run

name: Linters
on:
pull_request:
branches:
- main
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check --output-format=github .