-
-
Notifications
You must be signed in to change notification settings - Fork 208
37 lines (34 loc) · 932 Bytes
/
demo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
architecture: x64
- name: Cache python modules
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-python-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}-demo
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[demo]" --upgrade
- name: Run demo app
run: |
screen -dm streamlit run demo/app.py --server.port 8080
sleep 10 && nc -vz localhost 8080