Skip to content

Commit

Permalink
Updated validation of DNS nameservers
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 17, 2024
1 parent 308c756 commit fab824c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ jobs:

- name: Validate Nameserver
run: |
ping -c 3 google.com || true
nslookup google.com 8.8.8.8
nslookup google.com 1.1.1.1
nslookup google.com 208.67.222.222
for i in 8.8.8.8 1.1.1.1 208.67.222.222; do
echo -e "\nValidating DNS name server $i"
ping -c 3 $i || true
nslookup google.com $i || true
done
- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/[email protected]
Expand Down

0 comments on commit fab824c

Please sign in to comment.