Bump minimum PHP version to 8.2.0 #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: Lint and analyse PHP files | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint-php: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: highest | |
- name: Lint files | |
run: composer run phpcs | |
analyse-php: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: [ '8.2' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: highest | |
- name: Analyse files with PHPStan | |
run: composer run phpstan | |
- name: Analyse files with Psalm | |
# Allow the previous check to fail but not abort | |
if: always() | |
run: vendor/bin/psalm --shepherd |