Skip to content

Run Debian packaging action under Debian #33

Run Debian packaging action under Debian

Run Debian packaging action under Debian #33

Workflow file for this run

name: Documentation
on: [push, pull_request]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: python -m pip install -r requirements-ci.txt -e .
- name: Check documentation
run: |
python setup.py --long-description | rst2html.py --strict >/dev/null
make -C docs clean html