From aa01d74c01ea0fd900371b61af146b8d5ce439fa Mon Sep 17 00:00:00 2001 From: Slipstream Date: Thu, 12 Jun 2025 23:38:29 -0600 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b59f87b..7a9c3b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,17 @@ jobs: options: --user 1001:1001 steps: + - name: Who am I + run: id + - name: Check DNS + run: nslookup github.com + - name: Ping github.com + run: ping -c 2 github.com + - name: Try git clone + run: | + apk add --no-cache git ca-certificates + git clone https://github.com/Slipstreamm/disagreement.git /tmp/testclone + - name: Checkout code uses: actions/checkout@v4