Minimal CI with verbose output
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-01-31 22:21:10 +00:00
parent 1c1ea4369b
commit 624eb80ff0

View File

@@ -6,15 +6,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
run: | run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git /tmp/man-card
cd $HOME
git clone https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git
cd man-card
git checkout main
- name: Test - name: Install and test
run: | run: |
cd $HOME/man-card cd /tmp/man-card
pip install click fpdf2 Pillow rich python-dotenv pytest pytest-cov -q pip install --no-cache-dir click fpdf2 Pillow rich python-dotenv pytest pytest-cov 2>&1 | tail -5
pip install -e . -q pip install --no-cache-dir -e . 2>&1 | tail -3
pytest tests/ -v pytest tests/ -v 2>&1