Skip to content

160 161 transform normal init beta (#163) #150

160 161 transform normal init beta (#163)

160 161 transform normal init beta (#163) #150

name: Build and Deploy Docs
# execute this workflow automatically when a we push to master
on:
push:
branches:
- main
- test_docs_pages
jobs:
build_docs_job:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: pip
- name: Install Pandoc
uses: r-lib/actions/setup-pandoc@v2
- name: Install multidms
run: |
pip install --upgrade pip
pip install -e ".[dev]"
- name: Build 🔧
run: |
make -C docs clean
make -C docs html
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/_build/html