Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO 7b5da68494
Some checks failed
CI / test (push) Failing after 7s
Install system dependencies for Pillow
2026-01-31 22:27:26 +00:00

23 lines
578 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 /tmp/man-card
- name: Install system deps
run: |
apt-get update -qq
apt-get install -y -qq libjpeg-dev zlib1g-dev > /dev/null
- name: Install and test
run: |
cd /tmp/man-card
pip install click fpdf2 Pillow rich pytest pytest-cov
pip install -e .
pytest tests/ -v --tb=short