diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 87f82eaca..ecacd2714 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -10,6 +10,15 @@ jobs: laravel-tests: runs-on: ubuntu-latest + services: + mysql: + image: mariadb:10.4 + env: + MYSQL_ALLOW_EMPTY_PASSWORD: yes + MYSQL_DATABASE: TEST + ports: + - 3306 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - uses: actions/checkout@v2