Skip to content

Run integration tests on PR #53

Run integration tests on PR

Run integration tests on PR #53

Workflow file for this run

---
name: "Documentation"
on:
push:
paths:
- docs/**
- mkdocs.yml
workflow_dispatch:
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate docs
run: |
pip install mkdocs \
mkdocs-material \
pymdown-extensions \
mkdocs-mermaid2-plugin
mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site