fix: CI verify package install
Some checks failed
CI / test (push) Failing after 40s

This commit is contained in:
2026-02-04 20:48:32 +00:00
parent f08765b598
commit 7c80482f49

View File

@@ -6,14 +6,16 @@ jobs:
steps:
- name: Checkout
run: |
wget -q https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync/archive/main.tar.gz -O /tmp/repo.tar.gz
tar xzf /tmp/repo.tar.gz -C /tmp
cp -r /tmp/confsync-main/* .
ls -la
- name: Check Python
run: python3 --version
- name: Install
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git .
pwd && ls -la
- name: Setup Python
run: |
pip3 install -e . pytest 2>&1 | tail -5
- name: Test
run: pytest confsync/tests/ -v 2>&1 | head -30
apt-get update -qq
apt-get install -y -qq python3 python3-pip git
python3 --version && pip3 --version
- name: Install package
run: |
pip3 install -e . 2>&1 | tail -10
- name: Verify installation
run: |
python3 -c "import confsync; print('Import successful')"