Skip to content

Commit

Permalink
Add multi-adapter workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xjunior committed May 10, 2024
1 parent 2aca2a9 commit 0c10c22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/audiences-multi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ jobs:
postgres:
image: postgres:latest
env:
POSTGRES_USER: $DATABASE_USER
POSTGRES_PASSWORD: $DATABASE_PASS
POSTGRES_USER: ${{ env.DATABASE_USER }}
POSTGRES_PASSWORD: ${{ env.DATABASE_PASS }}
POSTGRES_DB: test
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
mysql:
image: mysql:latest
env:
MYSQL_USER: $DATABASE_USER
MYSQL_USER: ${{ env.DATABASE_USER }}
MYSQL_PASSWORD: ${{ env.DATABASE_PASS }}
MYSQL_RANDOM_ROOT_PASSWORD: yes
MYSQL_PASSWORD: $DATABASE_PASS
MYSQL_DATABASE: test
ports:
- 3306:3306
Expand Down

0 comments on commit 0c10c22

Please sign in to comment.