From 7e679425846f1b2683f45a72d7309fd4e1c727b1 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 22:29:20 +0000 Subject: [PATCH] Debug Python availability --- .gitea/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c968e32..916fcf1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,12 +6,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git - - - name: Install run: | - pip install click fpdf2 Pillow rich pytest - pip install -e . + git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git + ls -la - - name: Test - run: pytest tests/test_cli.py -v + - name: Check Python + run: | + which python3 + python3 --version + python3 -c "print('Hello')"