Skip to content

add mermaid test

add mermaid test #76

Workflow file for this run

name: Build mkdocs site
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- run: pip install mkdocs-material mkdocs-mermaid2-plugin
- run: mkdocs build --site-dir public
- name: Git Comands
run: |
git config user.email "[email protected]"
git config user.name "GitHub Actions"
git add public/
git commit -m "GitHub Actions"
git push