MySQL needs to be started manually

This commit is contained in:
slawkens 2023-05-26 10:19:13 +02:00
parent 317ebf4387
commit b33e39491b

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
services: services:
mysql: mysql:
image: mysql:latest image: mysql:8.0
env: env:
MYSQL_ALLOW_EMPTY_PASSWORD: false MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: password MYSQL_ROOT_PASSWORD: password
@ -25,6 +25,10 @@ jobs:
matrix: matrix:
php-versions: [ '7.4', '8.0', '8.1' ] php-versions: [ '7.4', '8.0', '8.1' ]
steps: steps:
- name: Start MySQL
run: |
sudo /etc/init.d/mysql start
- name: Checkout MyAAC - name: Checkout MyAAC
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with: