DOC: clean up front page and intro tutorial, state files must be in VCS #474
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
# SPDX-FileCopyrightText: 2022 The meson-python developers | |
# | |
# SPDX-License-Identifier: MIT | |
name: docs | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
- release-* | |
paths: | |
- docs/** | |
- CHANGELOG.rst | |
- README.md | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- uses: actions/checkout@v3 | |
- run: python -m pip install .[docs] | |
- run: python -m sphinx docs/ build/docs/ |