Update Github Action name #24
Workflow file for this run
This file contains hidden or 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: DNS | |
on: [push] | |
jobs: | |
dns-check: | |
name: Checking dns response for domains | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
name: Python setup | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Requirements | |
run: pip install -r requirements.txt | |
- name: Check if list includes domains without NS records | |
run: | | |
cd scripts | |
python3 dnscheck.py |