doc: explain asynchronous operation #74
Workflow file for this run
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: Build Sphinx Doc | |
on: | |
pull_request: | |
jobs: | |
build-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Packages | |
run: sudo apt-get update && sudo apt-get install -y default-jre plantuml tox | |
- name: Build static site with Tox | |
run: | | |
cd doc | |
tox -e py3-html |