name: CI on: push jobs: test: runs-on: ubuntu-latest steps: - name: Install run: pip3 install --no-cache-dir -e /app - name: Install test deps run: pip3 install --no-cache-dir pytest pytest-asyncio - name: Run tests run: pytest /app/tests/ -v