Skip to content

Update download links #85

Update download links

Update download links #85

Workflow file for this run

name: Pull Request CI Build
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build_en_docs:
runs-on: ubuntu-20.04
name: Build to check for warnings
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build documentation
shell: bash
run: |
# Return 1 on warning but do not exit
make SPHINXOPTS="-W --keep-going" html
mkdir -p build-archives