Skip to content

Commit

Permalink
run ipv6 multicast tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
afflux committed Jun 8, 2024
1 parent bf501d6 commit 9d18018
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pythonpackage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,29 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Setup network interfaces
run: |
sudo ip link add type veth
sudo ip link set dev veth0 address 02:00:00:00:00:00
sudo ip link set dev veth1 address 02:00:00:00:00:01
sudo ip link set up dev veth0
sudo ip link set up dev veth1
- name: Run tests, flake8 and mypy
run: |
tox
- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v3"
with:
Expand Down

0 comments on commit 9d18018

Please sign in to comment.