Skip to content

Open source fixes

Open source fixes #15

Workflow file for this run

name: sphinx
on: [ pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install --upgrade -r requirements.txt
- name: Build Sphinx docs
run: |
make -C docs html