cs: Fix the CS #57
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: "Inspection" | |
on: # yamllint disable-line rule:truthy | |
pull_request: null | |
push: | |
branches: | |
- "main" | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
ubuntu-inspection: | |
name: "Ubuntu Inspection" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.2" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3.1.0" | |
- name: "Set up PHP" | |
uses: "shivammathur/setup-php@2.22.0" | |
with: | |
coverage: "xdebug" | |
php-version: "${{ matrix.php-version }}" | |
tools: "phive" | |
- name: "Install Composer dependencies" | |
uses: "ramsey/composer-install@v2" | |
- name: "Execute finders" | |
run: "php bin/execute.php" | |
- name: "Run diagnosis" | |
run: "php bin/diagnose.php" | |
windows-inspection: | |
name: "Windows Inspection" | |
runs-on: "windows-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3.1.0" | |
- name: "Set up PHP" | |
uses: "shivammathur/setup-php@2.22.0" | |
with: | |
coverage: "xdebug" | |
php-version: "${{ matrix.php-version }}" | |
tools: "phive" | |
- name: "Install Composer dependencies" | |
uses: "ramsey/composer-install@v2" | |
- name: "Execute finders" | |
run: "php bin/execute.php" | |
- name: "Run diagnosis" | |
run: "php bin/diagnose.php" | |
osx-inspection: | |
name: "OSX Inspection" | |
runs-on: "macos-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.2" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3.1.0" | |
- name: "Set up PHP" | |
uses: "shivammathur/setup-php@2.22.0" | |
with: | |
coverage: "xdebug" | |
php-version: "${{ matrix.php-version }}" | |
tools: "phive" | |
- name: "Install Composer dependencies" | |
uses: "ramsey/composer-install@v2" | |
- name: "Execute finders" | |
run: "php bin/execute.php" | |
- name: "Run diagnosis" | |
run: "php bin/diagnose.php" |