ML for Developers

This commit is contained in:
GokuMohandas
2023-07-26 04:53:11 -07:00
commit 776a75b010
54 changed files with 55464 additions and 0 deletions

21
.github/workflows/documentation.yaml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: documentation
on:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-22.04
steps:
# Set up dependencies
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10.11'
cache: 'pip'
- run: python3 -m pip install mkdocs==1.4.2 mkdocstrings==0.21.2 "mkdocstrings[python]>=0.18"
# Deploy docs
- name: Deploy documentation
run: mkdocs gh-deploy --force