Skip to content

DOC: Remove Pandas LaTeX examples, because they don't seem to work anymore #751

DOC: Remove Pandas LaTeX examples, because they don't seem to work anymore

DOC: Remove Pandas LaTeX examples, because they don't seem to work anymore #751

Workflow file for this run

name: Check links in documentation
on: [push, pull_request]
env:
APT_INSTALL: sudo apt-get install -y --no-install-recommends
PIP: python -m pip
SPHINX: python -m sphinx -W --keep-going --color
jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pandoc
run: |
$APT_INSTALL pandoc
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3"
- name: Show Python version
run: |
python --version
- name: Install Python package
run: |
$PIP install .
- name: Install docs dependencies
run: |
$PIP install -r doc/requirements.txt
- name: Check links
run: |
$SPHINX -d _doctrees/ doc/ _build/linkcheck/ -b linkcheck
- name: Upload results
uses: actions/upload-artifact@v3
if: ${{ success() || failure() }}
with:
name: linkcheck
path: _build/linkcheck/output.*