Skip to content

Merge branch 'master' into deploy-k8s-dns #324

Merge branch 'master' into deploy-k8s-dns

Merge branch 'master' into deploy-k8s-dns #324

Workflow file for this run

name: Documentation Checks
on: push
jobs:
build:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Test building docs
run: mkdocs build