Skip to content

Update usage of soon-to-be deprecated Chex assertions (#560) #103

Update usage of soon-to-be deprecated Chex assertions (#560)

Update usage of soon-to-be deprecated Chex assertions (#560) #103

name: Publish the documentation
on:
push:
branches: [main]
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/[email protected]
with:
persist-credentials: false
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Build the documentation with Sphinx
run: |
pip install -r requirements-doc.txt
sphinx-build -b html docs docs/build/html
- name: Publish the documentation
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/build/html
CLEAN: true