Skip to content

Commit

Permalink
fix: ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwemox committed Apr 18, 2024
1 parent 8b9f85c commit 69a578b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
db_port: 5432

services:
database:
image: ${{ matrix.db_image }}
my-database:
image: ${{ matrix.db_image_name }}:${{ matrix.db_image_version }}
ports:
- ${{ matrix.db_port }}:{{ matrix.db_port }}
- ${{ matrix.db_port }}:${{ matrix.db_port }}
options: >-
${{ matrix.vars }}
${{ matrix.health }}
Expand Down
2 changes: 1 addition & 1 deletion tests/config/mysql.phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="false" stopOnFailure="false" bootstrap="../bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<php>
<var name="db_type" value="pdo_mysql"/>
<var name="db_host" value="database"/>
<var name="db_host" value="my-database"/>
<var name="db_username" value="travis"/>
<var name="db_password" value="travis"/>
<var name="db_name" value="doctrine_extensions_tests"/>
Expand Down
2 changes: 1 addition & 1 deletion tests/config/pgsql.phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="false" stopOnFailure="false" bootstrap="../bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<php>
<var name="db_type" value="pdo_pgsql"/>
<var name="db_host" value="database"/>
<var name="db_host" value="my-database"/>
<var name="db_username" value="travis"/>
<var name="db_password" value="travis"/>
<var name="db_name" value="doctrine_extensions_tests"/>
Expand Down

0 comments on commit 69a578b

Please sign in to comment.