Skip to content

feat: add nearest DC detection with TCP race #3923

feat: add nearest DC detection with TCP race

feat: add nearest DC detection with TCP race #3923

Workflow file for this run

name: Style checks
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
environment: [style, black, mypy]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox==4.2.6
- name: Test with tox
run: tox -e ${{ matrix.environment }}