From ff80ee20e1abd24736f1018ff91e9f5c8770f7cb Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 20:54:17 +0000 Subject: [PATCH] fix: CI with pip install --- .gitea/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 768c013..4aaa362 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,11 +5,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone - run: | - git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git . + run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git . - name: Python run: | which python3 || (apt-get update && apt-get install -y python3 python3-pip git) python3 --version + - name: Install + run: | + pip3 install -e . pytest + pip3 list | grep -E "(confsync|pytest)" - name: Test - run: echo "Setup successful" + run: echo "Install successful"