Skip to content

Commit 82ae253

Browse files
committed
Remove PHP 7 from CI
1 parent 657a7cc commit 82ae253

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
29-
php-version: ['7.3', '7.4', '8.0']
29+
php-version: ['8.0']
3030

3131
steps:
3232
- name: "Checkout code"
@@ -57,22 +57,11 @@ jobs:
5757
- name: "Require symfony/flex"
5858
run: composer global require --no-progress --no-scripts --no-plugins symfony/flex dev-main
5959

60-
- if: matrix.php-version != '8.0'
61-
run: composer update
60+
- run: composer update
6261

63-
- if: matrix.php-version == '8.0'
64-
run: composer update --ignore-platform-req=php
65-
66-
- if: matrix.php-version != '8.0'
67-
name: "Install PHPUnit"
62+
- name: "Install PHPUnit"
6863
run: vendor/bin/simple-phpunit install
6964

70-
- if: matrix.php-version == '8.0'
71-
name: "Install PHPUnit for PHP 8"
72-
run: |
73-
echo 'SYMFONY_PHPUNIT_VERSION=9.4' >> $GITHUB_ENV
74-
vendor/bin/simple-phpunit install
75-
7665
- name: "PHPUnit version"
7766
run: vendor/bin/simple-phpunit --version
7867

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
php-version: ['7.4']
26+
php-version: ['8.0']
2727

2828
steps:
2929
- name: "Checkout code"

0 commit comments

Comments
 (0)