mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
374875c786
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
name: Test Documentation Build
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- telegram/**
|
|
- docs/**
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test-sphinx-build:
|
|
name: test-sphinx-build
|
|
runs-on: ${{matrix.os}}
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.10']
|
|
os: [ubuntu-latest]
|
|
fail-fast: False
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: 'pip'
|
|
cache-dependency-path: '**/requirements*.txt'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -W ignore -m pip install --upgrade pip
|
|
python -W ignore -m pip install -r requirements-dev-all.txt
|
|
- name: Test autogeneration of admonitions
|
|
run: pytest -v --tb=short tests/docs/admonition_inserter.py
|
|
- name: Build docs
|
|
run: sphinx-build docs/source docs/build/html -W --keep-going -j auto
|
|
- name: Upload docs
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: HTML Docs
|
|
retention-days: 7
|
|
path: |
|
|
# Exclude the .doctrees folder and .buildinfo file from the artifact
|
|
# since they are not needed and add to the size
|
|
docs/build/html/*
|
|
!docs/build/html/.doctrees
|
|
!docs/build/html/.buildinfo
|