Skip to content

Update paginator.rst #2294

Update paginator.rst

Update paginator.rst #2294

Workflow file for this run

name: CI
on:
push:
branches:
- '3.x'
- '3.next'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
doc-type: ['HTML', 'EPUB', 'PDF']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install packages
run: |
sudo apt install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended texlive-lang-all
- name: Build Docs
run: |
if [[ ${{ matrix.doc-type }} == 'HTML' ]]; then make html; fi
if [[ ${{ matrix.doc-type }} == 'EPUB' ]]; then make epub; fi
if [[ ${{ matrix.doc-type }} == 'PDF' ]]; then make latex; fi