-
Notifications
You must be signed in to change notification settings - Fork 6
45 lines (35 loc) · 1.17 KB
/
migrations.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Doctrine Migrations
on:
push:
branches:
- 'master'
- '[0-9].[0-9]+'
pull_request: ~
env:
COMPOSER_ROOT_VERSION: dev-master
jobs:
mysql-migrations:
name: MySQL migrations
runs-on: ubuntu-latest
services:
mysql:
image: 'mysql:latest'
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: testdb
ports:
- '3306:3306'
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
coverage: none
- run: echo "DATABASE=mysql://[email protected]/testdb" >> $GITHUB_ENV
# Install Flex as a global dependency to enable usage of extra.symfony.require
# while keeping Flex recipes from applying
- run: composer global config --no-plugins allow-plugins.symfony/flex true
- run: composer global require --no-scripts symfony/flex
- run: composer config extra.symfony.require ~6.3.0
- run: composer update --prefer-dist
- run: php tests/application/bin/console doctrine:migrations:migrate --no-interaction --no-debug --env=prod --configuration=migrations/doctrine.yaml --ansi -vv