From fab824c5d9174bf749a1727a027171f3ffc0ad85 Mon Sep 17 00:00:00 2001 From: ckunki Date: Thu, 17 Oct 2024 12:04:01 +0200 Subject: [PATCH] Updated validation of DNS nameservers --- .github/workflows/ci.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 31d841e7..baa2525e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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/python-environment@0.14.0