Skip to content

Testing Issue 10000

Testing Issue 10000 #6

Workflow file for this run

name: Testing Issue 10000
on:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !(github.ref == 'refs/heads/main') }}
defaults:
run:
shell: bash {0}
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install solara
- name: Make solara example app
run: solara create button test.py
- name: Run example app
run: solara run test.py&
- name: Curl server response
run: curl --head -X GET --retry 35 --retry-connrefused --retry-delay 5 http://localhost:8765
test-by-removing-X:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install solara
- name: Make solara example app
run: solara create button test.py
- name: Run example app
run: solara run test.py&
- name: Curl server response
run: curl --head --retry 35 --retry-connrefused --retry-delay 5 http://localhost:8765