Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lint-docs.yml « workflows « .github - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 989a0ec79b98c45dc81bc44ff7b71cdeaaa53d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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@v3

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