Skip to content

get_system_addresses: Guard against netifaces race condition #82

get_system_addresses: Guard against netifaces race condition

get_system_addresses: Guard against netifaces race condition #82

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
steps:
- uses: actions/checkout@v2
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Python dependencies
run: |
python -mpip install tox
- name: tox
run: |
python -mtox
- name: Upload sdist zip
uses: actions/upload-artifact@v2
with:
name: 2ping-sdist-${{ github.job }}-${{ github.run_id }}.${{ github.run_number }}-${{ runner.os }}-py${{ matrix.python-version }}
path: .tox/dist/*.zip