From 7302fc6195b2c0cde6c71eb0dd25af2cff36d48f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 20:43:39 +0000 Subject: [PATCH] fix: basic CI workflow --- .gitea/workflows/ci.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 917f2a6..96cc94c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,15 +1,16 @@ name: CI -on: [push, pull_request] +on: push, pull_request jobs: test: runs-on: ubuntu-latest steps: - - run: | - git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git . - echo "Clone successful" - - run: | - python3 --version - - run: | - pip3 install pytest --quiet - - run: | - pip3 install -e . --quiet && echo "Install successful" + - name: Clone + run: git clone https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git . + - name: Install Python + run: | + apt-get update && apt-get install -y python3 python3-pip git + - name: Install deps + run: | + pip3 install -e . pytest + - name: Run tests + run: pytest confsync/tests/ -v