Skip to content

Commit 4ff210e

Browse files
committed
fix: php versions
1 parent 546a2e1 commit 4ff210e

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,15 @@ jobs:
1313
php-versions: ['8.2', '8.3', '8.4', '8.5' ]
1414
steps:
1515
- uses: actions/checkout@v2
16-
- uses: php-actions/composer@v6
17-
- uses: joelwmale/codeception-action@master
16+
- name: Setup php
17+
uses: shivammathur/setup-php@v2
18+
with:
19+
php-version: ${{ matrix.php-versions }}
20+
extensions: mbstring, intl
21+
ini-values: post_max_size=256M, max_execution_time=180
22+
coverage: xdebug
23+
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}
24+
- name: Composer
25+
uses: php-actions/composer@v6
26+
- name: Codeception
27+
uses: joelwmale/codeception-action@master

0 commit comments

Comments
 (0)