Skip to content

docs: add reusable socket retry helper and usage guidance #2

docs: add reusable socket retry helper and usage guidance

docs: add reusable socket retry helper and usage guidance #2

Workflow file for this run

name: Python application
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Validate Python syntax
run: python -m py_compile socket_eagain_error_handling.py
- name: Smoke test CLI
run: python socket_eagain_error_handling.py >/dev/null || true