Skip to content

Documentation

Documentation #13

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
#push:
# branches:
# - main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install mikeplus
run: pip install .[dev,doc]
- name: MkDocs
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: site