Skip to content

Implement Claude PR BugScan workflow (Draft鈫扲eady + push re-scan) #11

Implement Claude PR BugScan workflow (Draft鈫扲eady + push re-scan)

Implement Claude PR BugScan workflow (Draft鈫扲eady + push re-scan) #11

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
paths:
- "docs/**"
- "mkdocs.yml"
pull_request:
branches: [main]
paths:
- "docs/**"
- "mkdocs.yml"
jobs:
deploy:
if: github.event_name == 'push'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
build-check:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install mkdocs-material
- run: mkdocs build --strict