Skip to content

Refactor MAC to IP association checking #1400

Refactor MAC to IP association checking

Refactor MAC to IP association checking #1400

Workflow file for this run

on: [push, pull_request]
env:
UV_FROZEN: 1
name: CI
jobs:
test:
name: Integration
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
python-version:
- '3.11'
- '3.12'
- '3.13'
env:
# Disable colors and formatting in Rich console output
TERM: dumb
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test and compare api calls
run: ci/run_testsuite_and_record_V2.sh ${{ matrix.python-version }}
tox:
name: tox
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group ci
- name: Test building with tox
run: uv run tox r
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v18
with:
config: '.markdownlint.json'
globs: '**/*.md'
unit:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
- '3.13'
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run unittest
run: uv run pytest