Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Bump the composer-dependencies group with 3 updates #192

Bump the composer-dependencies group with 3 updates

Bump the composer-dependencies group with 3 updates #192

Workflow file for this run

name: Lint
on: [pull_request, push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1']
phpunit-versions: ['latest']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}, composer:v1
- run: composer install
- run: composer lint