setup-php/examples/symfony-mysql.yml

53 lines
2.0 KiB
YAML
Raw Normal View History

2019-10-10 19:17:17 +07:00
# GitHub Action for Symfony with MySQL
2019-10-08 19:42:54 +07:00
name: Testing Symfony with MySQL
on: [push, pull_request]
jobs:
2019-10-10 19:17:17 +07:00
symfony:
2019-10-08 19:42:54 +07:00
name: Symfony (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
services:
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: symfony
MYSQL_DATABASE: symfony
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
matrix:
2019-12-09 13:50:03 +07:00
php-versions: ['7.3', '7.4']
2019-10-08 19:42:54 +07:00
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup PHP, with composer and extensions
2019-11-28 06:47:56 +07:00
uses: shivammathur/setup-php@v1 #https://github.com/shivammathur/setup-php
2019-10-08 19:42:54 +07:00
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, xml, ctype, iconv, mysql
2019-10-08 19:42:54 +07:00
coverage: xdebug #optional
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
2019-10-08 19:42:54 +07:00
- name: Install Composer dependencies
run: |
composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
- name: Run Migration
run: |
composer require symfony/orm-pack
php bin/console doctrine:schema:update --force || echo "No migrations found or schema update failed"
php bin/console doctrine:migrations:migrate || echo "No migrations found or migration failed"
env:
DATABASE_URL: mysql://root:symfony@127.0.0.1:${{ job.services.mysql.ports['3306'] }}/symfony
- name: Run Tests
run: |
composer require phpunit
php bin/phpunit --coverage-text