|
|
|
@ -12,13 +12,14 @@ jobs:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
uses: actions/checkout@v6
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
fetch-depth: 0
|
|
|
|
- uses: shivammathur/setup-php@v2
|
|
|
|
- uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php }}
|
|
|
|
php-version: ${{ matrix.php }}
|
|
|
|
extensions: curl, mbstring, pdo_sqlite, fileinfo
|
|
|
|
extensions: mbstring, pdo_sqlite, fileinfo
|
|
|
|
tools: composer:v2
|
|
|
|
tools: composer:v2
|
|
|
|
- run: composer install
|
|
|
|
- run: |
|
|
|
|
- run: composer test
|
|
|
|
composer install --no-progress --no-ansi -n
|
|
|
|
|
|
|
|
composer test -- --colors=never --no-interaction
|
|
|
|
|