Skip to content

add /ping endpoint for latency diagnosis #90

add /ping endpoint for latency diagnosis

add /ping endpoint for latency diagnosis #90

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.12"
- "3.13"
- "3.14"
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: Install nox
run: python -m pip install --upgrade pip nox
- name: Run checks
run: nox -s tests black mypy