From b33e39491bd68d32123817a6f55eeaf0df04136b Mon Sep 17 00:00:00 2001 From: slawkens Date: Fri, 26 May 2023 10:19:13 +0200 Subject: [PATCH] MySQL needs to be started manually --- .github/workflows/cypress.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 55517ec2..014b65bb 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest services: mysql: - image: mysql:latest + image: mysql:8.0 env: MYSQL_ALLOW_EMPTY_PASSWORD: false MYSQL_ROOT_PASSWORD: password @@ -25,6 +25,10 @@ jobs: matrix: php-versions: [ '7.4', '8.0', '8.1' ] steps: + - name: Start MySQL + run: | + sudo /etc/init.d/mysql start + - name: Checkout MyAAC uses: actions/checkout@v3 with: