Skip to content

build(deps): bump ruff from 0.6.1 to 0.6.5 #312

build(deps): bump ruff from 0.6.1 to 0.6.5

build(deps): bump ruff from 0.6.1 to 0.6.5 #312

Workflow file for this run

name: demo
on:
push:
branches: main
pull_request:
branches: main
jobs:
streamlit:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: [3.9]
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 --upgrade -e ".[demo]"
- name: Run demo app
run: |
screen -dm streamlit run demo/app.py --server.port 8080
sleep 10 && nc -vz localhost 8080