Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO 210000a0f4
Some checks failed
CI / test (push) Failing after 31s
Final working CI workflow
2026-01-31 22:25:27 +00:00

20 lines
568 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Checkout
run: |
apt-get update -qq && apt-get install -y -qq git libjpeg-dev zlib1g-dev > /dev/null
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git
- name: Install and test
run: |
cd man-card
pip install --no-cache-dir click fpdf2 Pillow rich pytest pytest-cov
pip install --no-cache-dir -e .
pytest tests/ -v --tb=short