diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2b45de2..c370928 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,8 @@ jobs: POSTGRES_USER: ${{ env.DB_USERNAME }} POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }} options: --health-cmd=pg_isready --health-interval=10s --health-timeout=5s --health-retries=3 - ports: [5432:5432] + ports: + - 5432:5432 mysql: image: mysql:8.0 env: @@ -40,7 +41,8 @@ jobs: MYSQL_USER: ${{ env.DB_USERNAME }} MYSQL_PASSWORD: ${{ env.DB_PASSWORD }} options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 - ports: [3306:3306] + ports: + - 3306:3306 strategy: fail-fast: false