Skip to content

fix(session): prevent race condition during connection cleanup #367

fix(session): prevent race condition during connection cleanup

fix(session): prevent race condition during connection cleanup #367

Workflow file for this run

name: Hydrogram
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Generate API
run: |
make api
- name: Run tests
run: |
uv run pytest