Skip to content

Commit

Permalink
phpunit sf6
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Riki Popeliš committed Jul 19, 2024
1 parent a44ad92 commit a6f7b2e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit_lowest_mysql57_psql10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
php-version: ${{ matrix.php }}

- name: Composer update
run: composer update --prefer-lowest --no-progress --no-interaction && composer require symfony/console:<7.0.0
run: composer update --prefer-lowest --no-progress --no-interaction && composer require "symfony/console:<7.0.0"

- name: PHPunit
run: vendor/bin/phpunit --coverage-text
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit_lowest_mysql8_psql14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
php-version: ${{ matrix.php }}

- name: Composer update
run: composer update --prefer-lowest --no-progress --no-interaction && composer require symfony/console:<7.0.0
run: composer update --prefer-lowest --no-progress --no-interaction && composer require "symfony/console:<7.0.0"

- name: PHPunit
run: vendor/bin/phpunit --coverage-text
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit_mysql57_psql10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
php-version: ${{ matrix.php }}

- name: Composer update
run: composer update --no-progress --no-interaction && composer require symfony/console:<7.0.0
run: composer update --no-progress --no-interaction && composer require "symfony/console:<7.0.0"

- name: PHPunit
run: vendor/bin/phpunit --coverage-text
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit_mysql8_psql14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
php-version: ${{ matrix.php }}

- name: Composer update
run: composer update --no-progress --no-interaction
run: composer update --no-progress --no-interaction && composer require "symfony/console:<7.0.0"

- name: PHPunit
run: vendor/bin/phpunit --coverage-text && composer require symfony/console:<7.0.0
run: vendor/bin/phpunit --coverage-text
env:
PHOENIX_MYSQL_HOST: 127.0.0.1
PHOENIX_MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
Expand Down

0 comments on commit a6f7b2e

Please sign in to comment.