Skip to content

handle CIDR notation #21

handle CIDR notation

handle CIDR notation #21

Workflow file for this run

---
name: Unit Testing
on:
push:
branches:
- main
pull_request:
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: ./uv pip install --system -r requirements.test
- name: pytest
run: pytest -vvv
env:
PYTHONPATH: .