[PR #2140/e427a22b backport][stable-2.13] remove swiftype search engine #5310
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ansible Docsite CI | |
on: | |
push: | |
branches-ignore: | |
- 'patchback/**' | |
pull_request: | |
jobs: | |
docs_sanity_docs_build: | |
name: docs-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Docsite | |
uses: actions/checkout@v4 | |
- name: Install Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Test Requirements | |
run: | | |
python -m pip install -r tests/requirements.txt | |
- name: Graft ansible-core | |
run: | | |
python docs/bin/clone-core.py | |
- name: Run docs-build Checkers | |
run: | | |
python tests/checkers.py docs-build | |
docs_sanity_rstcheck: | |
name: rstcheck | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Docsite | |
uses: actions/checkout@v4 | |
- name: Install Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Test Requirements | |
run: | | |
python -m pip install -r tests/requirements.txt | |
- name: Graft ansible-core | |
run: | | |
python docs/bin/clone-core.py | |
- name: Run rstcheck Checkers | |
run: | | |
python tests/checkers.py rstcheck |