Starter usage patterns for running Prism in CI.

GitHub Actions Pattern

GitLab Pattern

stages:
  - docs

prism:
  stage: docs
  image: python:3.11
  script:
    - python -m pip install --upgrade pip
    - pip install -e .
    - prism role src/prism/tests/roles/enhanced_mock_role --fail-on-yaml-like-task-annotations -o README.generated.md
  artifacts:
    paths:
      - README.generated.md