Skip to content

Commit

Permalink
Add docs build CLI (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf committed Jul 20, 2020
1 parent 3b5cd2c commit 3a3cd43
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,29 @@ jobs:
file: ./coverage.xml
fail_ci_if_error: true


docs:

name: Test documentation build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[rtd]
# Build the docs
- name: Build docs to store
run: |
cd docs
make html-strict
publish:

name: Publish to PyPi
Expand Down

0 comments on commit 3a3cd43

Please sign in to comment.