Skip to content

Avoid sending ACK and NACK frames in new connection for messages received in old connection that was lost #410

Avoid sending ACK and NACK frames in new connection for messages received in old connection that was lost

Avoid sending ACK and NACK frames in new connection for messages received in old connection that was lost #410

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
check-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: extractions/setup-just@v3
- uses: astral-sh/setup-uv@v6
with:
cache-dependency-glob: "**/pyproject.toml"
- run: just install check-types
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: extractions/setup-just@v3
- uses: astral-sh/setup-uv@v6
with:
cache-dependency-glob: "**/pyproject.toml"
- run: just install lint
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v5
- uses: extractions/setup-just@v3
- uses: astral-sh/setup-uv@v6
with:
cache-dependency-glob: "**/pyproject.toml"
- run: uv python install ${{ matrix.python-version }}
- run: just install test -vv