Skip to content

depreciation np type removed #44

depreciation np type removed

depreciation np type removed #44

Workflow file for this run

name: Docs
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
sudo apt install pandoc
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install sphinx nbsphinx sphinx_rtd_theme pygments ipython sphinx-book-theme
# BUILD DOCS
- name: Build
run: |
make html --directory docs/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
branch: gh-pages # The branch the action should deploy to.
FOLDER: docs/_build/html # The folder the action should deploy.