Skip to content

Merge pull request #8 from scott-huberty/christian_revisions #41

Merge pull request #8 from scott-huberty/christian_revisions

Merge pull request #8 from scott-huberty/christian_revisions #41

Workflow file for this run

name: Build documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install doc dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[doc]
pip install -e .[extras]
pip install pymatreader
- name: Build documentation
run: |
cd docs
make html