Skip to content

Merge branch '2.2' #536

Merge branch '2.2'

Merge branch '2.2' #536

Workflow file for this run

name: Linting Tests
on: [push, pull_request]
permissions:
contents: read
jobs:
linting_tests:
runs-on: ${{ matrix.operating-systems }}
strategy:
matrix:
operating-systems: [ubuntu-latest]
php-versions: ['8.2', '8.3']
name: PHP ${{ matrix.php-versions }} test on ${{ matrix.operating-systems }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: curl, fileinfo, gd, intl, mbstring, openssl, pdo, pdo_mysql, tokenizer, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
- name: Running Composer Install
run: composer install
- name: Running Pint Test
run: vendor/bin/pint --test -v