Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/databases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
DB_DATABASE: testing
DB_USERNAME: root
DB_PASSWORD: password
run: vendor/bin/phpunit tests/Integration/Database
run: vendor/bin/phpunit tests/Integration/Database $(find tests/Integration -path 'tests/Integration/*/Database/MySql' -type d)
Comment thread
coderabbitai[bot] marked this conversation as resolved.

mysql_9:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
DB_DATABASE: testing
DB_USERNAME: root
DB_PASSWORD: password
run: vendor/bin/phpunit tests/Integration/Database
run: vendor/bin/phpunit tests/Integration/Database $(find tests/Integration -path 'tests/Integration/*/Database/MySql' -type d)

mariadb_10:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
DB_DATABASE: testing
DB_USERNAME: root
DB_PASSWORD: password
run: vendor/bin/phpunit tests/Integration/Database
run: vendor/bin/phpunit tests/Integration/Database $(find tests/Integration -path 'tests/Integration/*/Database/MariaDb' -type d)

mariadb_11:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
DB_DATABASE: testing
DB_USERNAME: root
DB_PASSWORD: password
run: vendor/bin/phpunit tests/Integration/Database
run: vendor/bin/phpunit tests/Integration/Database $(find tests/Integration -path 'tests/Integration/*/Database/MariaDb' -type d)

pgsql_17:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
DB_DATABASE: testing
DB_USERNAME: postgres
DB_PASSWORD: password
run: vendor/bin/phpunit tests/Integration/Database
run: vendor/bin/phpunit tests/Integration/Database $(find tests/Integration -path 'tests/Integration/*/Database/Postgres' -type d)

pgsql_18:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
DB_DATABASE: testing
DB_USERNAME: postgres
DB_PASSWORD: password
run: vendor/bin/phpunit tests/Integration/Database
run: vendor/bin/phpunit tests/Integration/Database $(find tests/Integration -path 'tests/Integration/*/Database/Postgres' -type d)

sqlite:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -382,4 +382,4 @@ jobs:
DB_DATABASE: /tmp/testing.sqlite
run: |
touch /tmp/testing.sqlite
vendor/bin/phpunit tests/Integration/Database
vendor/bin/phpunit tests/Integration/Database $(find tests/Integration -path 'tests/Integration/*/Database/Sqlite' -type d)
Loading