Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO 0fd7dfc251
Some checks failed
CI / test (push) Failing after 1s
Minimal CI workflow without actions
2026-01-31 22:03:25 +00:00

19 lines
383 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Python
run: |
python3 -m pip install --upgrade pip
python3 --version
- name: Install dependencies
run: |
pip3 install -r requirements.txt
pip3 install pytest
- name: Run tests
run: pytest3 tests/ -v