Skip to content

feat: enhance documentation with new sections on alignment algorithms… #51

feat: enhance documentation with new sections on alignment algorithms…

feat: enhance documentation with new sections on alignment algorithms… #51

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 repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install MkDocs and dependencies
run: |
pip install mkdocs pymdown-extensions
- name: Deploy to GitHub Pages
run: |
mkdocs gh-deploy --force