PIPELINE: tools list for nightly_ac6cf0a0_amd64 #276
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 |