This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
chore: move datasets to dev dep #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MkDocs documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
pip install mkdocs | |
- name: Build documentation | |
run: python docs/autogen.py | |
- name: Deploy to GitHub Pages | |
run: mkdocs gh-deploy -f docs/mkdocs.yml -c -v --force |