Skip to content

Notebook to prepare figure 6 #47

Notebook to prepare figure 6

Notebook to prepare figure 6 #47

Workflow file for this run

name: build-docs
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8 and conda/mamba
uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.8
mamba-version: "*"
channels: conda-forge
activate-environment: glaft
environment-file: environment.yml
use-mamba: true
- name: Test environment
shell: bash -l {0}
run: |
conda info
conda list
- name: Build book
shell: bash -l {0}
run: |
jupyter book build ./jupyter-book
- name: Deploy to gh-pages
if: github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3.8.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./jupyter-book/_build/html