Skip to content

MAINT, DOC: some testing maintenance and doc updates (#143) #67

MAINT, DOC: some testing maintenance and doc updates (#143)

MAINT, DOC: some testing maintenance and doc updates (#143) #67

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@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Pylossless
run: pip install -e .
- name: Install doc dependencies
run: pip install -r docs/requirements_doc.txt
- name: Build documentation
run: |
cd docs
make html