Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 0f1efc358b
Some checks failed
CI / test (push) Failing after 1s
CI with explicit cd and exit
2026-03-22 12:46:48 +00:00

18 lines
301 B
YAML

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup
run: |
set -x
pip3 install -e /app
pip3 install pytest pytest-asyncio
- name: Run tests
run: |
cd /app
pytest tests/ -v
exit $?