Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 2cc23b9453
Some checks failed
CI / test (push) Failing after 1s
CI showing full test output
2026-03-22 12:56:40 +00:00

14 lines
257 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
- name: Run tests
run: |
pytest /app/tests/ -v 2>&1 | tail -60