From c9b7c4381384d959675a2e3a20388e5d4220828e Mon Sep 17 00:00:00 2001 From: William Diakite Date: Wed, 23 Jul 2025 11:39:30 -0400 Subject: [PATCH] add workflow --- .forgejo/workflows/debug.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .forgejo/workflows/debug.yml diff --git a/.forgejo/workflows/debug.yml b/.forgejo/workflows/debug.yml new file mode 100644 index 0000000..2d34bc6 --- /dev/null +++ b/.forgejo/workflows/debug.yml @@ -0,0 +1,20 @@ +on: + push: + workflow_dispatch: + +jobs: + debug: + runs-on: docker + container: + image: debian:bullseye + options: --network=host # (Optional) + + steps: + - name: Install tools + run: apt update && apt install -y iputils-ping curl git + + - name: DNS + Git debug + run: | + ping -c 2 forgejo.ediv.xyz || true + curl -v https://forgejo.ediv.xyz || true + git ls-remote https://forgejo.ediv.xyz/alliances-transcoloniales/site || true