Skip to content

Implement UDP socket support and related transport management in the event loop #44

Implement UDP socket support and related transport management in the event loop

Implement UDP socket support and related transport management in the event loop #44

Workflow file for this run

name: lint
on:
pull_request:
types: [opened, synchronize]
branches:
- master
env:
UV_PYTHON: 3.13
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
enable-cache: false
- name: Install
run: |
uv python install ${{ env.UV_PYTHON }}
uv venv .venv
uv sync --group lint
- name: Lint
run: |
source .venv/bin/activate
make lint