Merge additions from work leading to Conference submission #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |