Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO d7d6364b5a
Some checks failed
CI / test (push) Failing after 1s
Final CI workflow with correct /app path
2026-03-22 12:35:32 +00:00

19 lines
368 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Verify app directory
run: |
ls -la /app
cat /app/setup.py
- name: Install dependencies
run: |
pip3 install -e /app pytest pytest-asyncio
- name: Run tests
run: pytest /app/tests/ -v --tb=short