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