Skip to content

docs: update documentation to reflect project name change from py-cas… #20

docs: update documentation to reflect project name change from py-cas…

docs: update documentation to reflect project name change from py-cas… #20

Workflow file for this run

permissions:
contents: read
name: Docs - Build and Link Check
on:
pull_request:
paths:
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs-check.yml'
push:
branches: [ master ]
paths:
- 'docs/**'
- 'mkdocs.yml'
jobs:
build-and-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up uv (with Python)
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --locked --no-default-groups --no-install-project --group docs
- name: Build site (uv ephemeral tool install)
run: uv run --no-project mkdocs build --strict
- name: Link check (external and internal)
uses: lycheeverse/lychee-action@v1
with:
args: --no-progress --verbose --accept 200,429 --base . "site/**/*.html"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}