From d4584490cf03c44560d5519bed16c7f11a7060e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Fri, 20 Nov 2020 11:57:37 +0200 Subject: [PATCH] Add databases to the testing matrix, take 5 --- .github/workflows/django.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index e83715bb..ef7cf427 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -25,7 +25,7 @@ jobs: postgres: image: postgres:10 env: - POSTGRES_USER: hc + POSTGRES_USER: postgres POSTGRES_PASSWORD: hunter2 options: >- --health-cmd pg_isready @@ -37,9 +37,7 @@ jobs: mysql: image: mysql:5.7 env: - MYSQL_USER: hc - MYSQL_PASSWORD: hunter2 - MYSQL_RANDOM_ROOT_PASSWORD: yes + MYSQL_ROOT_PASSWORD: hunter2 ports: - 3306:3306 options: >- @@ -64,7 +62,6 @@ jobs: DB: ${{ matrix.db }} DB_HOST: 127.0.0.1 DB_PORT: ${{ matrix.db_port }} - DB_USER: hc DB_PASSWORD: hunter2 run: | python manage.py test