Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1007 Bytes

checkstyle.md

File metadata and controls

35 lines (26 loc) · 1007 Bytes

How to Add Checkstyle to your CI?

Checkstyle is feature for GitHub Actions to add comment right into your pull-request.

Save your time from looking into failed CI build, when you can see comment right in your pull-request.

Add GitHub Actions Workflow

# .github/workflows/rector_chekcstyle.yaml
# see https://github.com/staabm/annotate-pull-request-from-checkstyle
name: Rector Checkstyle

on:
    pull_request: null
    push:
        branches:
            - master

jobs:
    rector_checkstyle:
        runs-on: ubuntu-latest
        steps:
            -   uses: actions/checkout@v2

            -   uses: shivammathur/setup-php@v1
                with:
                    php-version: 7.2
                    coverage: none
                    tools: cs2pr

            -   run: composer install --no-progress --ansi

            -   run: vendor/bin/rector process --ansi --dry-run --output-format=checkstyle | cs2pr