Skip to content

Commit

Permalink
Moved env to another place in config
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoooo committed Mar 18, 2024
1 parent 18fc62c commit 1c30153
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ensembl-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ jobs:
services:
mysql:
image: mysql
env:
MYSQL_ROOT_PASSWORD: "ensembl"
MYSQL_ALLOW_EMPTY_PASSWORD: 'true'
env:
COVERALLS: "${{ matrix.COVERALLS }}"
DB: "${{ matrix.DB }}"
Expand All @@ -72,8 +75,6 @@ jobs:
env:
COVERALLS: 'true'
DB: mysql
MYSQL_ROOT_PASSWORD: "ensembl"
MYSQL_ALLOW_EMPTY_PASSWORD: 'true'
steps:
- name: checkout
uses: actions/checkout@v4.1.0
Expand Down Expand Up @@ -114,13 +115,14 @@ jobs:
services:
mysql:
image: mysql
env:
MYSQL_ROOT_PASSWORD: "ensembl"
MYSQL_ALLOW_EMPTY_PASSWORD: 'true'
test_3:
runs-on: ubuntu-latest
env:
COVERALLS: 'true'
DB: mysql
MYSQL_ROOT_PASSWORD: "ensembl"
MYSQL_ALLOW_EMPTY_PASSWORD: 'true'
steps:
- name: checkout
uses: actions/checkout@v4.1.0
Expand Down Expand Up @@ -161,3 +163,6 @@ jobs:
services:
mysql:
image: mysql
env:
MYSQL_ROOT_PASSWORD: "ensembl"
MYSQL_ALLOW_EMPTY_PASSWORD: 'true'

0 comments on commit 1c30153

Please sign in to comment.