PIPELINE: tools list for nightly_4aefda50_amd64 #670
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 doc | |
on: | |
push: | |
paths-ignore: | |
- ".github/**" | |
pull_request: | |
paths-ignore: | |
- ".github/**" | |
jobs: | |
build: | |
name: Build doc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
submodules: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Install requirements | |
run: python -m pip install --user -r ./requirements.txt | |
- name: Build docs | |
run: make html |