Skip to content

docs: add mkdocs for python #2

docs: add mkdocs for python

docs: add mkdocs for python #2

Workflow file for this run

on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r bindings/docs/requirements-docs.txt
- name: Build MkDocs
run: mkdocs build
# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# personal_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./site