Properly support PHP 8.4 #66
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: Static | |
on: | |
push: | |
branches: | |
- '*.x' | |
tags: | |
- '[0-9].[0-9]+' | |
pull_request: | |
jobs: | |
phpstan: | |
name: "PHPStan" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the workspace | |
uses: actions/checkout@v3 | |
- name: Setup PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- name: Composer cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.HOME }}/.composer/cache | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-interaction | |
- name: PHPStan | |
run: composer phpstan-all | |
cs: | |
name: "CS Fixer" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the workspace | |
uses: actions/checkout@v3 | |
- name: Setup PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- name: Validate composer.json | |
run: composer validate --strict --no-check-lock | |
- name: Composer cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.HOME }}/.composer/cache | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-interaction | |
- name: CS Fixer | |
run: composer cs-fixer |