Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO 385d492ce1
Some checks failed
CI / test (push) Failing after 2s
Minimal test - just test_cli.py
2026-01-31 22:28:42 +00:00

18 lines
381 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git
- name: Install
run: |
pip install click fpdf2 Pillow rich pytest
pip install -e .
- name: Test
run: pytest tests/test_cli.py -v