From 830449e759a869270680f3c9b9baa529f7d29947 Mon Sep 17 00:00:00 2001 From: jvyden Date: Sat, 16 Oct 2021 21:47:36 -0400 Subject: [PATCH] Connect to localhost --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c524fe2..c8c3b291 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: - name: Run database migrations if: ${{ matrix.os.database }} - run: mysql --batch --user=lighthouse --password=lighthouse lighthouse < <(cat DatabaseMigrations/*.sql) + run: mysql --batch --user=lighthouse --password=lighthouse --host=localhost lighthouse < <(cat DatabaseMigrations/*.sql) - name: Test continue-on-error: true