Skip to content

Update comments and tidy up some parts of the code #12

Update comments and tidy up some parts of the code

Update comments and tidy up some parts of the code #12

Workflow file for this run

# Publish documentation using mkdocs via GitHub pages
name: Documentation
on:
push:
branches:
- main
- master
jobs:
deploy:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install git+https://${PERSONAL_TOKEN}@github.com/squidfunk/mkdocs-material.git
- run: mkdocs gh-deploy --force
env:
GH_TOKEN: ${{ secrets.PERSONAL_TOKEN}}