Skip to content

Add Support for updating AAAA record #14

Add Support for updating AAAA record

Add Support for updating AAAA record #14

Workflow file for this run

name: godaddyip_ci
on: [push, pull_request]
jobs:
build:
name: Running python ${{ matrix.python-version }} on ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.12]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Print Python Version
run: python --version --version && which python
- name: Update pip, setuptools + wheels
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install -e .[test]
- name: Check files are formatted with black
run: |
black --check --diff .