mridang/pmd-annotations

Turns PMD style XML reports into Github pull-request annotations via the Checks API. This script is meant for use within your Github Action.

Fund package maintenance!
mridang

0.0.2 2020-03-31 08:41 UTC

This package is auto-updated.

Last update: 2024-03-29 04:25:26 UTC


README

Turns PMD style XML-reports into Github pull-request annotations via the Checks API. This script is meant for use within your Github Action.

That means you no longer have to search through your Github Action log files or the console output. No need to interpret messages which are formatted differently with every tool. Instead you can focus on your pull-request, and you don't need to leave the pull-request area.

Logs Example

Context Example Images from https://github.com/mheap/phpunit-github-actions-printer

Installation

Install the binary via Composer

composer require mridang/pmd-annotations

Example Usage

pmd2pr can be used on a already existing PMD-report XML-report. Alternatively you might use it in the UNIX pipe notation to chain it into your existing cli command.

Run one of the following commands within your Github Action workflow:

Process a PMD formatted file

vendor/bin/pmd2pr /path/to/pmd-report.xml

Available Options

  • --graceful-warnings: Don't exit with error codes if there are only warnings
  • --colorize: Colorize the output. Useful if the same lint script should be used locally on the command line and remote on Github Actions. With this option, errors and warnings are better distinguishable on the command line and the output is still compatible with Github annotations

Pipe the output of another commmand

This works for any command which produces a PMD-formatted report. Examples can bee seen below:

Using PHPMD

phpmd . xml codesize,naming,unusedcode,controversial,design --exclude libs,var,build,tests --ignore-violations-on-exit | vendor/bin/pmd2pr

Example GithubAction workflow

If you're using shivammathur/setup-php to setup PHP, pmd2pr binary is shipped within:

# ...
jobs:
    phpmd-analysis:
      name: phpmd static code analysis
      runs-on: ubuntu-latest
      steps:
          - uses: actions/checkout@v2
          - name: Setup PHP
            uses: shivammathur/setup-php@v1
            with:
                php-version: 7.3
                coverage: none # disable xdebug, pcov
                tools: pmd2pr
          - run: |
                composer install # install your apps dependencies
                vendor/bin/phpmd . xml codesize,naming,unusedcode,controversial,design --exclude libs,var,build,tests --ignore-violations-on-exit | pmd2pr

If you use a custom PHP installation, then your project needs to require mridang/pmd-annotations

# ...
jobs:
    phpmd-analysis:
      name: phpmd static code analysis
      runs-on: ubuntu-latest
      steps:
          - uses: actions/checkout@v2
          - name: Setup PHP
            run: # custom PHP installation
          - run: |
                composer install # install your apps dependencies
                composer require mridang/pmd-annotations # install pmd2pr
                vendor/bin/phpmd . xml codesize,naming,unusedcode,controversial,design --exclude libs,var,build,tests --ignore-violations-on-exit | vendor/bin/pmd2pr

Resources

GithubAction Problem Matchers