Lint extra docsite docs and links #264
This file contains hidden or 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: Lint extra docsite docs and links | |
on: | |
# Run CI against all pushes (direct commits, also merged PRs), Pull Requests | |
push: | |
branches: | |
- stable-* | |
pull_request: | |
paths: | |
- 'docs/docsite/**' | |
# Run CI once per day (at 06:00 UTC) | |
# This ensures that even if there haven't been commits that we are still testing against latest version of ansible-test for each ansible-base version | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
docsite: | |
name: Lint extra docsite docs and links | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Install ansible-core and antsibull-docs | |
run: pip install ansible-core antsibull-docs --disable-pip-version-check | |
# OPTIONAL If your collection depends on other collections, make sure to install them here | |
# - name: Install dependent collections | |
# run: > | |
# ansible-galaxy collection install | |
# ansible.netcommon | |
# ansible.utils | |
- name: Run collection docs linter | |
run: antsibull-docs lint-collection-docs . --plugin-docs --skip-rstcheck |