M #-: Add #6463 to known issues (libvirtd restart each 10 minutes) #1784
Workflow file for this run
This file contains hidden or 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: Make html | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11 | |
| - name: Install dependencies | |
| run: | | |
| DEBIAN_FRONTEND=noninteractive sudo -E apt-get install -y graphviz | |
| python -m pip install --upgrade pip | |
| pip install sphinx==5.0.0 sphinx_rtd_theme==1.2.0 sphinx-prompt sphinxcontrib-spelling pyyaml Sphinx-Substitution-Extensions[prompt] | |
| - name: Make html | |
| run: | | |
| make html |