Skip to content

Github CI: removed gcc #3

Github CI: removed gcc

Github CI: removed gcc #3

Workflow file for this run

name: documentation
on:
push:
branches:
- docs_public
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: |
pip install python3-dev pandoc python3-psutil sphinx matplotlib ipywidgets nbsphinx pylatexenc sphinx-pdj-theme myst_parser
- name: Sphinx build
run: |
python3 -m sphinx -b html ./docs/source _build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true