Skip to content

add citation

add citation #52

Workflow file for this run

name: Deploy MkDocs site
on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.x'
- run: pip install mkdocs mkdocs-material mkdocstrings[python] mkdocs-static-i18n[material] matplotlib
- run: mkdocs build
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site