Skip to content

Add a static method to convert html to search-friendly text #298

Add a static method to convert html to search-friendly text

Add a static method to convert html to search-friendly text #298

Workflow file for this run

name: Docs Test
on:
pull_request:
permissions:
contents: read
jobs:
docs-build:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: Output infos
run: |
echo "${{ github.event.pull_request.merge_commit_sha }}"
echo "${{ github.event.pull_request.head.sha }}"
- name: Checkout project
uses: actions/checkout@v7
- name: Git infos
run: |
git rev-parse HEAD
git branch --show-current
- uses: actions/setup-python@v7
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install -r docs/requirements.txt
- name: List dependencies
run: |
pip list
- name: Sphinx build
run: |
sphinx-build docs docs/_build