From 17e78707d0a6beca178565d859ebc4e859bccc88 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 20:59:10 +0000 Subject: [PATCH] fix: CI checkout action --- .gitea/workflows/ci.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 32d8fe4..6de380e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,17 +4,8 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Clone - run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git . - - name: Check Python + - uses: actions/checkout@v3 + - name: Install and test run: | - which python3 - python3 --version - which pip3 - pip3 --version - - name: Install - run: | - pip3 install pytest - pytest --version - - name: Test - run: pytest confsync/tests/ -v || true + pip install pytest + pytest confsync/tests/ -v