From a85a109c174278e26ada95278d0ef1b67ba1f1b0 Mon Sep 17 00:00:00 2001 From: ProtoTess <32490978+0x524A@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:24:24 +0000 Subject: [PATCH] ci: add status check job to debug workflow execution --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d3ea11..8b3739f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,19 @@ concurrency: cancel-in-progress: true jobs: + # Status check - always runs + status-check: + name: Workflow Status + runs-on: ubuntu-latest + steps: + - name: Workflow started + run: echo "✅ CI workflow is running" + # Quick validation - fail fast on obvious issues validate: name: Quick Validation runs-on: ubuntu-latest + needs: status-check steps: - name: Checkout code