-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated validation of DNS nameservers
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|