Skip to content

Bumped version

Bumped version #243

Workflow file for this run

name: build-docs
# Only run this when the master branch changes
on:
pull_request:
push:
branches:
- master
paths:
- 'pyproject.toml'
- '**.py'
- 'templates/**'
- '.github/workflows/build-docs.yml'
# Cancel existing executions when new commits are pushed onto the branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
# Install dependencies
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
python3 -m pip install pdoc matplotlib numpy scipy wheel setuptools poetry pytest
python3 -m pip install .
# Build the site
- name: Build the site
run: |
bash generate_docs.sh -t
# If we've pushed to master, push the book's HTML to github-pages
- if: ${{ github.ref == 'refs/heads/master' }}
name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs