Skip to content

Initial version

Initial version #1

Workflow file for this run

name: CI
on: [ push ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1', '8.2' ]
name: PHP ${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v3
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: |
vendor/bin/phpunit
- name: Execute static analysis
run: |
vendor/bin/phpstan
- name: Execute code style
run: |
vendor/bin/pint