From 2f02b17ab936fd6d84f5ed925aad705938421fda Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 4 Feb 2021 21:30:50 +1100 Subject: [PATCH] Fixes for tests --- .github/workflows/phpunit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index d3452492ed38..f5a333161701 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -64,13 +64,13 @@ jobs: - name: Verify MySQL connection from container run: | - mysql -h"127.0.0.1" -uninja -pninja -e "SHOW DATABASES" + mysql -h"localhost" -uninja -pninja -e "SHOW DATABASES" - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - extensions: mysql, sqlite3, bcmath, gmp, gd, curl, zip, openssl, mbstring, xml + extensions: mysql, mysqlnd, sqlite3, bcmath, gmp, gd, curl, zip, openssl, mbstring, xml - uses: actions/checkout@v1 with: