Skip to content

style(mypy): silence incorrect typing warnings #333

style(mypy): silence incorrect typing warnings

style(mypy): silence incorrect typing warnings #333

Workflow file for this run

name: demo
on:
push:
branches: main
pull_request:
branches: main
jobs:
gradio:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: [3.11]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade uv
uv pip install --system -r demo/requirements.txt
- name: Run demo app
run: |
screen -dm python demo/app.py --port 8080
sleep 20 && nc -vz localhost 8080