Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO ab17aa24d9
Some checks failed
CI / test (push) Failing after 2s
Simplified CI workflow
2026-01-31 22:22:30 +00:00

24 lines
467 B
YAML

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
rm -rf man-card
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git
- name: Python check
run: |
which python3
python3 --version
- name: Install
run: |
pip install click fpdf2 Pillow rich pytest
- name: Run tests
run: pytest tests/ -v