runner-debug/.forgejo/workflows/debug.yml

21 lines
491 B
YAML
Raw Permalink Normal View History

2025-07-23 11:39:30 -04:00
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