Skip to content

Commit

Permalink
Fix mysql credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuscruz committed Jan 16, 2025
1 parent 3bd1c42 commit c1faeb8
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@ jobs:
ports:
- 3306:3306
env:
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: true
MARIADB_HOST: 127.0.0.1
MARIADB_DATABASE: mysql
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: true
MARIADB_USER: mysql
MARIADB_PASSWORD: mysql
options: >-
--health-cmd "mariadb-admin ping"
--health-interval 10s
Expand Down Expand Up @@ -170,13 +173,13 @@ jobs:
PG_REPLICA_HOST: localhost
PG_REPLICA_PORT: 5433
MYSQL_PRIMARY_USER: mysql
MYSQL_PRIMARY_PASSWORD:
MYSQL_PRIMARY_PASSWORD: mysql
MYSQL_PRIMARY_HOST: localhost
MYSQL_PRIMARY_PORT: 3306
MYSQL_REPLICA_USER: mysql
MYSQL_REPLICA_PASSWORD:
MYSQL_REPLICA_HOST: mysql_replica
MYSQL_REPLICA_PORT: 3307
MYSQL_REPLICA_PASSWORD: mysql
MYSQL_REPLICA_HOST: localhost
MYSQL_REPLICA_PORT: 3306

run: |
export RUBY_VERSION="${{ matrix.ruby }}"
Expand Down

0 comments on commit c1faeb8

Please sign in to comment.