Skip to content
check-circle

GitHub Action

Run PHPStan with ReviewDog

1.1.2 Latest version

Run PHPStan with ReviewDog

check-circle

Run PHPStan with ReviewDog

🐾 Run PHP Static Analyzer with ReviewDog

Installation

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

              

- name: Run PHPStan with ReviewDog

uses: mikebronner/[email protected]

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

Choose a version

GitHub Action: Run PHPSTAN with ReviewDog

This action runs PHP Static Analyzer 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

phpstan_level

Report level for phpstan. Default 4

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

target_directory

Default src

fail_on_error

Fail on error. Default false

args

This is a catch-all for any other commandline arguments you want to add to PHPStan. Default ''

Usage

phpstan-linter:
    name: PHPStan
    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: 'error'
                fail_on_error: 'false'
                phpstan_level: 4
                reporter: 'github-pr-review'
                target_directory: 'src'