Skip to content

Bump docker/metadata-action from 5 to 6 (#62) #49

Bump docker/metadata-action from 5 to 6 (#62)

Bump docker/metadata-action from 5 to 6 (#62) #49

Workflow file for this run

name: doc-build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: docs/requirements.txt
- name: Run docs QA checks
run: |
python3 scripts/tests/lint_markdown.py
python3 scripts/tests/check_docs_links.py
- name: Build docs
run: |
cd docs
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
make clean
make html