mirror of
https://github.com/j0k3r/php-readability.git
synced 2026-09-27 14:36:23 +00:00
This will allow us to use flexible heredocs in test, as well as typed properties and other goodies. https://www.php.net/releases/7_3_0.php https://www.php.net/releases/7_4_0.php
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
name: "CS"
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
coding-standards:
|
|
name: "CS Fixer & PHPStan"
|
|
runs-on: "ubuntu-22.04"
|
|
|
|
strategy:
|
|
matrix:
|
|
php:
|
|
- "7.4"
|
|
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "actions/checkout@v4"
|
|
|
|
- name: "Install PHP"
|
|
uses: "shivammathur/setup-php@v2"
|
|
with:
|
|
coverage: "none"
|
|
php-version: "${{ matrix.php }}"
|
|
tools: cs2pr, composer:v2
|
|
ini-values: "date.timezone=Europe/Paris"
|
|
env:
|
|
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: "Install dependencies with Composer"
|
|
uses: "ramsey/composer-install@v3"
|
|
with:
|
|
composer-options: "--optimize-autoloader --prefer-dist"
|
|
|
|
- name: "Run PHP CS Fixer"
|
|
run: "php vendor/bin/php-cs-fixer fix --verbose --dry-run --format=checkstyle | cs2pr"
|
|
|
|
- name: "Install PHPUnit for PHPStan"
|
|
run: "php vendor/bin/simple-phpunit install"
|
|
|
|
- name: "Run PHPStan"
|
|
run: "php vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr"
|