Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO 624eb80ff0
Some checks failed
CI / test (push) Failing after 1s
Minimal CI with verbose output
2026-01-31 22:21:10 +00:00

17 lines
473 B
YAML

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git /tmp/man-card
- name: Install and test
run: |
cd /tmp/man-card
pip install --no-cache-dir click fpdf2 Pillow rich python-dotenv pytest pytest-cov 2>&1 | tail -5
pip install --no-cache-dir -e . 2>&1 | tail -3
pytest tests/ -v 2>&1