Skip to content

Commit ab4d365

Browse files
committed
Transform on PHP 7.4 too
1 parent 5e6b374 commit ab4d365

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@ jobs:
4545
run: "composer install --no-interaction --no-progress"
4646

4747
- name: "Install PHP for code transform"
48-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
48+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
4949
uses: "shivammathur/setup-php@v2"
5050
with:
5151
coverage: "none"
5252
php-version: 8.0
5353

5454
- name: "Transform source code"
55-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
55+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
5656
run: "build/transform-source ${{ matrix.php-version }}"
5757

5858
- name: "Reinstall matrix PHP version"
59-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
59+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
6060
uses: "shivammathur/setup-php@v2"
6161
with:
6262
coverage: "none"

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ jobs:
4848
run: "composer install --no-interaction --no-progress"
4949

5050
- name: "Install PHP for code transform"
51-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
51+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
5252
uses: "shivammathur/setup-php@v2"
5353
with:
5454
coverage: "none"
5555
php-version: 8.0
5656
extensions: mbstring
5757

5858
- name: "Transform source code"
59-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
59+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
6060
shell: bash
6161
run: "build/transform-source ${{ matrix.php-version }}"
6262

6363
- name: "Reinstall matrix PHP version"
64-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
64+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
6565
uses: "shivammathur/setup-php@v2"
6666
with:
6767
coverage: "none"

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ jobs:
4848
run: "composer install --no-interaction --no-progress"
4949

5050
- name: "Install PHP for code transform"
51-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
51+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
5252
uses: "shivammathur/setup-php@v2"
5353
with:
5454
coverage: "none"
5555
php-version: 8.0
5656
extensions: mbstring
5757

5858
- name: "Transform source code"
59-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
59+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
6060
shell: bash
6161
run: "build/transform-source ${{ matrix.php-version }}"
6262

6363
- name: "Reinstall matrix PHP version"
64-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
64+
if: matrix.php-version != '8.0' && matrix.php-version != '8.1'
6565
uses: "shivammathur/setup-php@v2"
6666
with:
6767
coverage: "none"

0 commit comments

Comments
 (0)