Skip to content

Merge pull request #56 from sbillinge/rever #91

Merge pull request #56 from sbillinge/rever

Merge pull request #56 from sbillinge/rever #91

Workflow file for this run

name: documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.9 ]
fail-fast: false
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install documentation-building requirements
run: |
set -vxeuo pipefail
python -m pip install -r requirements/docs.txt
python -m pip install . --no-deps
- name: Build Docs
run: make -C docs html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html