Skip to content

added doi badge

added doi badge #92

Workflow file for this run

name: "docs"
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Install latex
run: |
sudo apt-get update -y && sudo apt-get install -y texlive-latex-extra dvipng
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Update pip and install python dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install .[docs]
- name: Build html docs
working-directory: 'docs/'
run: |
make html
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/build/html # The folder the action should deploy.