Several fixes to the module settings documentation. #1152
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: Check docs structure | |
on: | |
- pull_request | |
- push | |
- workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install python3-pip python3-setuptools python3-wheel --assume-yes --install-recommends | |
sudo pip3 install -r requirements.txt . | |
- name: Check for broken redirects | |
run: ./tools/find-broken-redirects | |
- name: Check for missing pages | |
run: ./tools/find-missing | |
- name: Check for orphaned pages | |
run: ./tools/find-orphans | |
- name: Check for trailing whitespace | |
run: ./tools/find-whitespace | |
- name: Lint YAML | |
run: yamllint docs/ | |
- name: Build the docs site | |
if: github.event_name != 'push' | |
run: | | |
mkdocs build |