Skip to content

change title

change title #4

Workflow file for this run

name: Build Docs
on:
push:
paths:
- "docs/**"
- "mkdocs.yml"
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
path: .cache
key: ${{ github.ref }}
- run: pip install mkdocs-material jupyter nbconvert mkdocs-jupyter
- run: mkdocs gh-deploy --force