|
|
|
@ -16,7 +16,7 @@ env: |
|
|
|
jobs: |
|
|
|
jobs: |
|
|
|
phpunit: |
|
|
|
phpunit: |
|
|
|
name: "PHPUnit (PHP ${{ matrix.php }})" |
|
|
|
name: "PHPUnit (PHP ${{ matrix.php }})" |
|
|
|
runs-on: "ubuntu-20.04" |
|
|
|
runs-on: "ubuntu-22.04" |
|
|
|
|
|
|
|
|
|
|
|
strategy: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
matrix: |
|
|
|
@ -31,7 +31,7 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- name: "Checkout" |
|
|
|
- name: "Checkout" |
|
|
|
uses: "actions/checkout@v2" |
|
|
|
uses: "actions/checkout@v4" |
|
|
|
with: |
|
|
|
with: |
|
|
|
fetch-depth: 2 |
|
|
|
fetch-depth: 2 |
|
|
|
|
|
|
|
|
|
|
|
@ -56,7 +56,7 @@ jobs: |
|
|
|
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update" |
|
|
|
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update" |
|
|
|
|
|
|
|
|
|
|
|
- name: "Install dependencies with Composer" |
|
|
|
- name: "Install dependencies with Composer" |
|
|
|
uses: "ramsey/composer-install@v1" |
|
|
|
uses: "ramsey/composer-install@v3" |
|
|
|
with: |
|
|
|
with: |
|
|
|
composer-options: "--optimize-autoloader --prefer-dist" |
|
|
|
composer-options: "--optimize-autoloader --prefer-dist" |
|
|
|
|
|
|
|
|
|
|
|
@ -68,7 +68,7 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
phpunit-coverage: |
|
|
|
phpunit-coverage: |
|
|
|
name: "PHPUnit coverage (PHP ${{ matrix.php }})" |
|
|
|
name: "PHPUnit coverage (PHP ${{ matrix.php }})" |
|
|
|
runs-on: "ubuntu-20.04" |
|
|
|
runs-on: "ubuntu-22.04" |
|
|
|
|
|
|
|
|
|
|
|
strategy: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
matrix: |
|
|
|
@ -77,7 +77,7 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- name: "Checkout" |
|
|
|
- name: "Checkout" |
|
|
|
uses: "actions/checkout@v2" |
|
|
|
uses: "actions/checkout@v4" |
|
|
|
with: |
|
|
|
with: |
|
|
|
fetch-depth: 2 |
|
|
|
fetch-depth: 2 |
|
|
|
|
|
|
|
|
|
|
|
@ -96,7 +96,7 @@ jobs: |
|
|
|
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update" |
|
|
|
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update" |
|
|
|
|
|
|
|
|
|
|
|
- name: "Install dependencies with Composer" |
|
|
|
- name: "Install dependencies with Composer" |
|
|
|
uses: "ramsey/composer-install@v1" |
|
|
|
uses: "ramsey/composer-install@v3" |
|
|
|
with: |
|
|
|
with: |
|
|
|
composer-options: "--optimize-autoloader --prefer-dist" |
|
|
|
composer-options: "--optimize-autoloader --prefer-dist" |
|
|
|
|
|
|
|
|
|
|
|
@ -121,7 +121,7 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
phpunit-lowest: |
|
|
|
phpunit-lowest: |
|
|
|
name: "PHPUnit lowest deps (PHP ${{ matrix.php }})" |
|
|
|
name: "PHPUnit lowest deps (PHP ${{ matrix.php }})" |
|
|
|
runs-on: "ubuntu-20.04" |
|
|
|
runs-on: "ubuntu-22.04" |
|
|
|
|
|
|
|
|
|
|
|
strategy: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
matrix: |
|
|
|
@ -130,7 +130,7 @@ jobs: |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- name: "Checkout" |
|
|
|
- name: "Checkout" |
|
|
|
uses: "actions/checkout@v2" |
|
|
|
uses: "actions/checkout@v4" |
|
|
|
with: |
|
|
|
with: |
|
|
|
fetch-depth: 2 |
|
|
|
fetch-depth: 2 |
|
|
|
|
|
|
|
|
|
|
|
@ -149,7 +149,7 @@ jobs: |
|
|
|
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update" |
|
|
|
run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update" |
|
|
|
|
|
|
|
|
|
|
|
- name: "Install dependencies with Composer" |
|
|
|
- name: "Install dependencies with Composer" |
|
|
|
uses: "ramsey/composer-install@v1" |
|
|
|
uses: "ramsey/composer-install@v3" |
|
|
|
with: |
|
|
|
with: |
|
|
|
composer-options: "--optimize-autoloader --prefer-dist" |
|
|
|
composer-options: "--optimize-autoloader --prefer-dist" |
|
|
|
dependency-versions: "lowest" |
|
|
|
dependency-versions: "lowest" |
|
|
|
|