phpmyadmin/phpmyadmin

View on GitHub
.github/workflows/lint-docs.yml

Summary

Maintainability
Test Coverage
name: Lint php documentation

on:
  push:
  pull_request:
    types: [opened, synchronize, reopened]
    branches:
      - master
      - QA_**

permissions:
  contents: read

jobs:
  lint-docs:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Lint phpdoc blocks
        uses: sudo-bot/action-doctum@v5
        with:
          config-file: tests/doctum-config.php
          method: "parse"
          cli-args: "--output-format=github --no-ansi --no-progress -v --ignore-parse-errors"