Skip to content

fix: open_sonar_udp_multicast_socket should bind "" #17

fix: open_sonar_udp_multicast_socket should bind ""

fix: open_sonar_udp_multicast_socket should bind "" #17

Workflow file for this run

name: Tests
on:
push:
workflow_call: {}
jobs:
Check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.15"
python-version: ${{ matrix.python-version }}
- name: Ensure package imports without dev dependencies
run: |
uv run --no-dev --locked python -c "import wlsonar"
uv run --no-dev --locked python -c "import wlsonar.range_image_protocol"
- name: Install dependencies (including dev)
run: uv sync --locked --dev
- name: Run ruff
run: uv run ruff check
- name: Run mypy
run: uv run mypy .
- name: Test
run: uv run pytest