Files
testdata-cli/.gitea/workflows/ci.yml
2026-03-22 12:38:40 +00:00

20 lines
353 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Debug
run: |
set -x
whoami
pwd
ls -la /app
- name: Install
run: pip3 install -e /app && pip3 install pytest pytest-asyncio
- name: Run tests
run: pytest /app/tests/ -v