feat: Added docs via MkDocs
This commit is contained in:
21
.github/workflows/docs_pages.yml
vendored
Normal file
21
.github/workflows/docs_pages.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: docs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
docs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.12'
|
||||
- run: |
|
||||
pip install mkdocs
|
||||
pip install "mkdocstrings[python]"
|
||||
pip install mkdocs-material
|
||||
pip install mkdocs-callouts
|
||||
mkdocs gh-deploy --force
|
||||
Reference in New Issue
Block a user