Skip to content

[pre-commit.ci] pre-commit autoupdate #219

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #219

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
pull_request:
jobs:
GitHub-Pages-Build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8]
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 internal dependencies
run: |
pip install -e .[test]
- name: Build documentation
run: |
cd docs && make clean && make html SPHINXOPTS="-W" # Fail on warning.