Skip to content

Commit

Permalink
Fix tests again.
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Feb 9, 2024
1 parent 8fe3f1e commit d5f0175
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,20 @@ on:
name: build

jobs:
build:
build-linux:
uses: yiisoft/actions/.github/workflows/codeception.yml@master
with:
extensions: fileinfo, intl
os: >-
['ubuntu-latest', 'windows-latest']
['ubuntu-latest']
php: >-
['8.1', '8.2', '8.3']
build-windows:
uses: yiisoft/actions/.github/workflows/codeception.yml@allowed-custom-codeception-command
with:
extensions: fileinfo, intl
codeception-command: vendor/bin/codecept run --coverage-xml --env yii-serve
os: >-
['ubuntu-latest']
php: >-
['8.1', '8.2', '8.3']
2 changes: 1 addition & 1 deletion tests/Acceptance.suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ actor: AcceptanceTester
extensions:
enabled:
- Codeception\Extension\RunProcess:
0: yii serve --docroot=public --port=8881
0: php -d variables_order=EGPCS -S 127.0.0.1:8881 -t public
sleep: 1
modules:
enabled:
Expand Down
5 changes: 5 additions & 0 deletions tests/_envs/yii-serve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
extensions:
enabled:
- Codeception\Extension\RunProcess:
0: yii serve --docroot=public --port=8881
sleep: 1

0 comments on commit d5f0175

Please sign in to comment.