Skip to content

Merge pull request #5 from vdhicts/feature/php-8.1 #20

Merge pull request #5 from vdhicts/feature/php-8.1

Merge pull request #5 from vdhicts/feature/php-8.1 #20

Workflow file for this run

name: CI
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1', '8.2', '8.3' ]
name: PHP ${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: composer test:no-coverage
- name: Execute static analysis
run: composer analyse
- name: Execute coding standards check
run: composer lint:check