Skip to content

Update rendering of docs, fix some docstrings #204

Update rendering of docs, fix some docstrings

Update rendering of docs, fix some docstrings #204

Workflow file for this run

name: Deploy docs
on:
push:
pull_request:
schedule:
- cron: '0 6 * * 6'
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: pip install --no-deps -r docs/requirements.txt
- name: Build site
run: mkdocs build
- name: Deploy to gh-pages
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: oprypin/push-to-gh-pages@v3
with:
publish_dir: site
commit_message: 'Generate docs: '