fix: open_sonar_udp_multicast_socket should bind "" #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |