|
97 | 97 | CI_SERVICE_ACCOUNT_JSON_KEY: ${{ secrets.CI_SERVICE_ACCOUNT_JSON_KEY }}
|
98 | 98 | run: |
|
99 | 99 | touch .env
|
100 | | - if [ "${{ matrix.db }}" = "mysql" ]; then |
| 100 | + if [ "${{ matrix.db.driver }}" = "mysql" ]; then |
101 | 101 | MYSQL_PORT=3307 MYSQL_VERSION=${{ matrix.db.version }} docker compose up ${{ matrix.db.driver }} -d
|
102 | | - elif [ "${{ matrix.db }}" = "pgsql" ]; then |
| 102 | + elif [ "${{ matrix.db.driver }}" = "pgsql" ]; then |
103 | 103 | POSTGRES_PORT=5432 PGSQL_VERSION=${{ matrix.db.version }} docker compose up ${{ matrix.db.driver }} -d
|
104 | 104 | fi
|
105 | 105 | - name: Install dependencies
|
|
0 commit comments