Skip to content

Commit

Permalink
fix: docker-compose.yml fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
kidunot89 committed Sep 28, 2023
1 parent 9f31740 commit 62d5ef4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ jobs:
php-version: ${{ matrix.php }}
extensions: json, mbstring

- name: Install Codeception dependencies
run: |
composer install --ignore-platform-reqs
composer require codeception/module-asserts:* \
codeception/util-universalframework:* \
codeception/module-rest:* \
lucatume/wp-browser:^3.1 --ignore-platform-reqs
- name: Run Codeception Tests w/ Docker.
run: composer run-codeception -- -- --coverage --coverage-xml

- name: Install PHPUnit dependencies
if: ${{ matrix.php != '8.0' }}
run: |
Expand All @@ -41,17 +52,6 @@ jobs:
if: ${{ matrix.php != '8.0' }}
run: composer run-phpunit -- -- --coverage-text

- name: Install Codeception dependencies
run: |
composer install --ignore-platform-reqs
composer require codeception/module-asserts:* \
codeception/util-universalframework:* \
codeception/module-rest:* \
lucatume/wp-browser:^3.1 --ignore-platform-reqs
- name: Run Codeception Tests w/ Docker.
run: composer run-codeception -- -- --coverage --coverage-xml

- name: Push Codecoverage to Coveralls.io
env:
COVERALLS_RUN_LOCALLY: 1
Expand Down

0 comments on commit 62d5ef4

Please sign in to comment.