diff options
author | Davey Shafik <davey@php.net> | 2020-10-27 08:18:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 08:18:02 +0000 |
commit | 463d5e6d7a5e62b526788e3172ea569b39395c4b (patch) | |
tree | c39d5b1f470cccb8a99621dfce95bc73fabb836f | |
parent | 90634621f136ac313687f4562b997db6d8c22490 (diff) | |
download | php7-mysql-shim-463d5e6d7a5e62b526788e3172ea569b39395c4b.zip php7-mysql-shim-463d5e6d7a5e62b526788e3172ea569b39395c4b.tar.gz php7-mysql-shim-463d5e6d7a5e62b526788e3172ea569b39395c4b.tar.bz2 |
Use 127.0.0.1
-rw-r--r-- | .github/workflows/phpunit.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index 1bb36de..ed84f2d 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -48,6 +48,6 @@ jobs: - name: Run Tests run: composer run test -- --coverage-text env: - MYSQL_HOST: localhost:${{ job.services.mysql.ports['3306'] }} + MYSQL_HOST: 127.0.0.1:${{ job.services.mysql.ports['3306'] }} MYSQL_USERNAME: root MYSQL_PASSWORD: password |