Skip to content

Updated PHP-CS-Fixer to not ignore PHP version now that PHP 8.2 is su… #254

Updated PHP-CS-Fixer to not ignore PHP version now that PHP 8.2 is su…

Updated PHP-CS-Fixer to not ignore PHP version now that PHP 8.2 is su… #254

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
include:
- php: '8.2'
stability: prefer-stable
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Set Up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, dom, libxml, mbstring, pcntl, xdebug, zip
tools: composer:v2
coverage: xdebug
- name: Install Dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
- name: Run Tests
run: composer phpunit
- name: Run Linter
run: composer phpcs-test
- name: Run Psalm Static Analysis
run: composer psalm