Skip to content
check-circle

GitHub Action

Run PHPMD with ReviewDog

1.0.4 Latest version

Run PHPMD with ReviewDog

check-circle

Run PHPMD with ReviewDog

🐾 Run PHP Mess Detector with ReviewDog

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Run PHPMD with ReviewDog

uses: mikebronner/[email protected]

Learn more about this action in mikebronner/action-reviewdog-phpmd

Choose a version

GitHub Action: Run PHPMD with ReviewDog

This action runs PHP Mess Detector with ReviewDog.

Inputs

github_token

Required Must be in form of github_token: ${{ secrets.github_token }}

level

Report level for reviewdog [info,warning,error]. It's same as -level flag of reviewdog. Default warning

reporter

Reporter of reviewdog command [github-pr-check,github-check,github-pr-review]. It's same as -reporter flag of reviewdog. Default github-pr-check

standard

Can be any one or more of (in a comma-separated list without spaces):

  • cleancode
  • codesize
  • controversial
  • design
  • naming
  • unusedcode or a custom rules configuration file path. Default cleancode,codesize,controversial,design,naming,unusedcode

target_directory

Default src

Usage

# name: Laravel Package Tests

# on:
#   push:
#     branches: [ master, develop ]
#   pull_request:
#     branches: [ master, develop ]

# jobs:
  phpmd-linter:
    name: PHPMD
    runs-on: ubuntu-latest
    steps:
        - name: Check out code into the workspace
            uses: actions/checkout@v2
        - name: Run php check code with reviewdog
            uses: GeneaLabs/[email protected]
            with:
                github_token: '${{ github.token }}'
                level: 'warning'
                reporter: 'github-pr-check'
                standard: 'cleancode,codesize,controversial,design,naming,unusedcode'
                target_directory: 'src'
                exclude: '*/Migrations/*'
                name: 'PHPMD'