From e85e6d306e7cfdf2d4c9b74f2a7b6873ef238924 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 20:53:10 +0000 Subject: [PATCH] fix: CI with Python setup --- .gitea/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e49eb9c..768c013 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,6 +7,9 @@ jobs: - name: Clone run: | git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git . - ls -la + - name: Python + run: | + which python3 || (apt-get update && apt-get install -y python3 python3-pip git) + python3 --version - name: Test - run: echo "Clone successful" + run: echo "Setup successful"