From 986c74e117d9a18cc662e35eb02ae8cff02a87d6 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:33:06 +0000 Subject: [PATCH] Minimal echo CI to test runner --- .gitea/workflows/ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d33f5a7..a78db4a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,12 +8,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Install Python dependencies + - name: Echo test + run: echo "Hello World" + - name: Show environment run: | - python3 --version - pip3 install -e . pytest pytest-asyncio - - name: Run tests - run: | - pytest tests/ -v --tb=short 2>&1 || true + echo "PWD: $(pwd)" + echo "Files: $(ls -la)" + python3 --version || echo "Python not found"