Skip to content

Commit 46a62b3

Browse files
committed
Updated actions
1 parent e4091aa commit 46a62b3

File tree

9 files changed

+18
-3
lines changed

9 files changed

+18
-3
lines changed

.github/workflows/phpstan-5.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ jobs:
1515
with:
1616
args: --prefer-dist
1717
php_version: '8.2'
18+
php_extensions: zip xdebug
19+
1820
- name: PHPStan
1921
uses: php-actions/phpstan@v3
2022
with:
2123
path: src/
2224
level: 5
2325
php_version: '8.2'
26+
php_extensions: zip xdebug

.github/workflows/phpstan-6.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ jobs:
1515
with:
1616
args: --prefer-dist
1717
php_version: '8.2'
18+
php_extensions: zip xdebug
1819
- name: PHPStan
1920
uses: php-actions/phpstan@v3
2021
with:
2122
path: src/
2223
level: 6
2324
php_version: '8.2'
25+
php_extensions: zip xdebug

.github/workflows/phpstan-7.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ jobs:
1515
with:
1616
args: --prefer-dist
1717
php_version: '8.2'
18+
php_extensions: zip xdebug
1819
- name: PHPStan
1920
uses: php-actions/phpstan@v3
2021
with:
2122
path: src/
2223
level: 7
2324
php_version: '8.2'
25+
php_extensions: zip xdebug

.github/workflows/phpstan-8.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ jobs:
1515
with:
1616
args: --prefer-dist
1717
php_version: '8.2'
18+
php_extensions: zip xdebug
1819
- name: PHPStan
1920
uses: php-actions/phpstan@v3
2021
with:
2122
path: src/
2223
level: 8
2324
php_version: '8.2'
25+
php_extensions: zip xdebug

.github/workflows/quality.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
with:
5858
args: --prefer-dist
5959
php_version: '8.2'
60+
php_extensions: zip xdebug
6061
- name: PHPStan
6162
uses: php-actions/phpstan@v3
6263
with:

.github/workflows/rector.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: "ramsey/composer-install@v2"
2323

24-
- run: vendor/bin/rector --ansi
24+
- run: bin/rector --ansi
2525

2626
-
2727
# commit only to core contributors who have repository access

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"phpstan/phpstan": "^1.10",
3939
"friendsofphp/php-cs-fixer": "^3.0",
4040
"infection/infection": "^0.26.18",
41-
"rector/rector": "^0.15",
41+
"rector/rector": "^0.15.23",
4242
"php-etl/phpunit-extension": "^0.5.0"
4343
},
4444
"autoload": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
<directory>tests/functional/</directory>
2020
</testsuite>
2121
</testsuites>
22+
<coverage>
23+
<include>
24+
<directory suffix=".php">src</directory>
25+
</include>
26+
</coverage>
2227
<php>
2328
<ini name="allow_url_include" value="1"/>
2429
</php>

0 commit comments

Comments
 (0)