From ffae41aaaee4af813e3dd983b7e68f81f4091544 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 21:12:27 +0000 Subject: [PATCH] fix: CI apt-get pip --- .gitea/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5934593..fc852a0 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,10 +4,12 @@ jobs: test: runs-on: ubuntu-latest steps: + - run: | + apt-get update -qq + apt-get install -y python3-pip git + apt-get install -y python3-setuptools || true - run: | git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git /tmp/confsync cd /tmp/confsync - curl -sS https://bootstrap.pypa.io/get-pip.py -o get-pip.py - python3 get-pip.py pip install pytest pytest confsync/tests/ -v