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

18 lines
329 B
YAML

name: CI
on: push
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