From 89a91f94eaa5593d8ffc359ee23e4a0f71e14e14 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 21:11:10 +0000 Subject: [PATCH] fix: CI get-pip and test --- .gitea/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 10b59ba..5934593 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,10 +4,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - 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