From 5d235fa16dc92820be38864b7f051816c2721730 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:30:00 +0000 Subject: [PATCH] Debug CI - check if code is already checked out --- .gitea/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 47421f1..5c6120c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,15 +8,16 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout code + - name: Checkout run: | - echo "Checking out code..." + echo "Checking current directory..." + pwd ls -la - - name: Setup Python + - name: Check Python run: | python3 --version - pip3 --version - - name: Install dependencies + which python3 + - name: Install run: | pip3 install -e . pytest pytest-asyncio - name: Run tests