Testing Issue 10000 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |