Skip to content

Update domains.py

Update domains.py #112

Workflow file for this run

name: Check
on: [push, pull_request]
jobs:
build:
name: Check and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Typecheck code
run: poetry run mypy dns
- name: Check domains
run: poetry run python -m dns.lint