Skip to content

fix(wokwi): pexpect.spawn not working on windows. use subprocess instead #393

fix(wokwi): pexpect.spawn not working on windows. use subprocess instead

fix(wokwi): pexpect.spawn not working on windows. use subprocess instead #393

Workflow file for this run

name: Test Build Docs
on:
pull_request:
paths:
- '**.py'
- 'docs/**'
- '*.md'
jobs:
test-build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.7'
- name: Install dependencies
run: |
bash foreach.sh install
pip install -r docs/requirements.txt
- name: Test build docs
run: |
cd docs && make html SPHINXOPTS="-W"