Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 202a1194ed
All checks were successful
CI / test (push) Successful in 2s
Final CI with output capture
2026-03-22 12:55:40 +00:00

14 lines
305 B
YAML

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install
run: |
pip3 install --no-cache-dir -e /app 2>&1 | tail -30 || echo "Exit code: $?"
- name: Run tests
run: |
pytest /app/tests/ -v 2>&1 | tail -30 || echo "Exit code: $?"