From ae4aae50b3d6aa06f59bfb4f4b483eb7f3ac1c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Mon, 29 Jun 2026 10:53:39 +0400 Subject: [PATCH] test: minimal runner test --- .gitea/workflows/deploy.yaml | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 0983e5f..31bc8b8 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -1,5 +1,5 @@ name: Deploy contracts-flask -run-name: 🚀 ${{ gitea.actor }} pushed — validating +run-name: 🚀 ${{ gitea.actor }} pushed on: push: @@ -9,17 +9,12 @@ jobs: validate: runs-on: linux_amd64 steps: - - name: Checkout + - name: Test runner run: | - git clone --depth 1 "https://x-access-token:${GITEA_TOKEN}@gitea.services.ngcloud.ru/${{ gitea.repository }}.git" . - git checkout ${{ gitea.sha }} - - - name: Python syntax check - run: | - python3 -c "import py_compile; py_compile.compile('site/app.py', doraise=True)" - echo "✅ app.py — syntax OK" - - - name: Deploy note - run: | - echo "📦 Ready for manual redeploy via Nubes UI" - echo "🔗 https://contractor.pythonk8s.services.ngcloud.ru" + echo "✅ Runner is alive!" + echo "Actor: ${{ gitea.actor }}" + echo "Repo: ${{ gitea.repository }}" + echo "Ref: ${{ gitea.ref }}" + python3 --version + echo "Workspace: $(pwd)" + ls -la