Skip to content

Use Ubuntu 24.04 for CI. #1196

Use Ubuntu 24.04 for CI.

Use Ubuntu 24.04 for CI. #1196

Workflow file for this run

name: Check docs structure
on:
- pull_request
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-24.04
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 --break-system-packages --requirement 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