commit c9b7c4381384d959675a2e3a20388e5d4220828e Author: William Diakite Date: Wed Jul 23 11:39:30 2025 -0400 add workflow 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