Merge branch '5.0.x' into bugfix_27388_send_series_id #106
Workflow file for this run
This file contains 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: Code validation | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php-versions: ['8.2'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: PHP validator | |
run: find . -type f -name "*.php" -print0 | xargs -0 -n1 -P8 php -l | |
- name: PHPCSFixer | |
uses: docker://teltek/php-cs-fixer-ga | |
with: | |
args: --config=.php-cs-fixer.dist.php --diff --dry-run |