Skip to content

Commit f738c1c

Browse files
committed
Do not transform source code on PHP 8.1
1 parent 50fcd30 commit f738c1c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: "composer install --no-interaction --no-progress --no-suggest"
4646

4747
- name: "Transform source code"
48-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0'
48+
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
4949
run: php bin/transform-source.php
5050

5151
- name: "Lint"

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: "composer require --dev phpunit/phpunit:^7.5.20 brianium/paratest:^4.0 --update-with-dependencies"
5353

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

5858
- name: "PHPStan"

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: "composer install --no-interaction --no-progress --no-suggest"
4949

5050
- name: "Transform source code"
51-
if: matrix.php-version != '7.4' && matrix.php-version != '8.0'
51+
if: matrix.php-version != '7.4' && matrix.php-version != '8.0' && matrix.php-version != '8.1'
5252
run: php bin/transform-source.php
5353

5454
- name: "Tests"

0 commit comments

Comments
 (0)