Skip to content

Fixed newline

Fixed newline #29

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches: [ main ]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
pip install mkdocs-material
pip install mkdocs-mermaid2-plugin
- name: Deploy
run: mkdocs gh-deploy --force