Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
db-port: "3306"
db-env-json: '{"MYSQL_ROOT_HOST":"%","MYSQL_DATABASE":"phpdb_test","MYSQL_ALLOW_EMPTY_PASSWORD":"true"}'
db-health-cmd: "mysqladmin ping -h127.0.0.1 --silent"
# The test/mutation-test jobs run directly on the runner VM (no
# container:), so the DB is only reachable via 127.0.0.1 + the mapped
# port, not the container name. phpunit.xml.dist defaults this to
# "mysql" for local Docker Compose dev (container-to-container); this
# overrides it for CI without touching that file.
test-env-json: '{"TESTS_PHPDB_ADAPTER_MYSQL_HOSTNAME":"127.0.0.1"}'
enable-codecov: true
enable-infection: true
# Canonical leg for coverage + mutation testing (highest supported PHP).
Expand Down
Loading