Traits 6.4.2 bugfix release #726
Workflow file for this run
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: Doc build | |
on: | |
pull_request | |
jobs: | |
docs: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.8'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies and local packages | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install Sphinx enthought_sphinx_theme sphinx-copybutton | |
python -m pip install . | |
- name: Build HTML documentation with Sphinx | |
run: | | |
cd docs | |
python -m sphinx -b html -W source build |