Skip to content

Add github actions workflow to run sphinx-build for checking (#219) #2

Add github actions workflow to run sphinx-build for checking (#219)

Add github actions workflow to run sphinx-build for checking (#219) #2

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Requirements
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Sphinx build - html
run: |
make html
- name: Sphinx build - pdf
run: |
apt install -y latexmk texlive-latex-extra
make latexpdf
- name: Sphinx build - epub
run: |
make epub