BP-4551-PayPerEmail cancellation combined with Credit Management resu… #4746
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: M2 Coding Standard | |
on: [push, pull_request] | |
jobs: | |
phpcs: | |
name: M2 Code Analysis | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: extdn/github-actions-m2/magento-coding-standard/8.1@master | |
with: | |
phpcs_severity: 10 | |
phpcs_report: full | |
phpmd: | |
name: M2 Mess Detection | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: extdn/github-actions-m2/magento-mess-detector@master | |
phpstan: | |
name: M2 PHPStan | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: extdn/github-actions-m2/magento-phpstan@master | |
with: | |
composer_name: buckaroo/magento2 |