add Stream::readStringUntil function that uses string terminator #472
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
# Ensure Sphinx can build the documentation properly. | |
name: Documentation | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
documentation: | |
name: Sphinx build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Build documentation | |
run: | | |
pip install --user -r doc/requirements.txt | |
bash ./tests/ci/build_docs.sh |