name: CI on: push jobs: test: runs-on: ubuntu-latest steps: - name: Debug run: | set -x whoami pwd ls -la /app - name: Install and test run: pip3 install -e /app && pip3 install pytest pytest-asyncio && pytest /app/tests/ -v || echo "Test command failed with code $?"