PIPELINE: tools list for nightly_91aa7e24_amd64 #642
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.10" | |
- name: Install requirements | |
run: python -m pip install --user -r ./requirements.txt | |
- name: Build docs | |
run: make html |