fix: minimal CI workflow
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-02-04 20:32:32 +00:00
parent ffd606a24a
commit a7756d74a4

View File

@@ -1,24 +1,11 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Python
run: |
which python3 || apt-get update && apt-get install -y python3 python3-pip
- name: Check files
run: |
ls -la
ls confsync/
ls confsync/tests/ 2>/dev/null || echo "No tests dir"
- name: Install dependencies
run: |
- run: |
python3 --version
pip3 install -e .
pip3 install pytest
- name: Run tests
run: |
python3 -c "import confsync" && pytest --collect-only 2>/dev/null || echo "No tests collected"
pytest confsync/tests/ -v 2>/dev/null || pytest tests/ -v 2>/dev/null || echo "No tests found"
pytest -v