Add Support for updating AAAA record (#11) #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |