fix: CI with pip install
Some checks failed
CI / test (push) Failing after 2s

This commit is contained in:
2026-02-04 20:54:17 +00:00
parent e85e6d306e
commit ff80ee20e1

View File

@@ -5,11 +5,14 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Clone - name: Clone
run: | run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git .
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git .
- name: Python - name: Python
run: | run: |
which python3 || (apt-get update && apt-get install -y python3 python3-pip git) which python3 || (apt-get update && apt-get install -y python3 python3-pip git)
python3 --version python3 --version
- name: Install
run: |
pip3 install -e . pytest
pip3 list | grep -E "(confsync|pytest)"
- name: Test - name: Test
run: echo "Setup successful" run: echo "Install successful"