Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 5fd8cac387
Some checks failed
CI / test (push) Failing after 1s
Clean final CI workflow
2026-03-22 12:54:41 +00:00

14 lines
296 B
YAML

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install
run: pip3 install --no-cache-dir -e /app
- name: Install test deps
run: pip3 install --no-cache-dir pytest pytest-asyncio
- name: Run tests
run: pytest /app/tests/ -v