setup-php/examples/symfony-mysql.yml

71 lines
2.5 KiB
YAML
Raw Permalink 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
2022-04-03 05:54:07 +07:00
# Docs: https://docs.github.com/en/actions/using-containerized-services
2019-10-08 19:42:54 +07:00
services:
mysql:
2021-12-15 18:19:10 +07:00
image: mysql:latest
2019-10-08 19:42:54 +07:00
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: symfony
MYSQL_DATABASE: symfony
ports:
2020-01-08 13:05:32 +07:00
- 3306/tcp
2019-10-08 19:42:54 +07:00
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
matrix:
2021-12-15 18:19:10 +07:00
php-versions: ['7.4', '8.0', '8.1']
2019-10-08 19:42:54 +07:00
steps:
- name: Checkout
2023-09-09 17:53:40 +07:00
uses: actions/checkout@v4
2021-12-15 18:19:10 +07:00
# Docs: https://github.com/shivammathur/setup-php
- name: Setup PHP
uses: shivammathur/setup-php@v2
2019-10-08 19:42:54 +07:00
with:
php-version: ${{ matrix.php-versions }}
2021-07-17 13:19:03 +07:00
tools: phpunit-bridge
2019-12-28 03:48:01 +07:00
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql
2021-12-15 18:19:10 +07:00
coverage: xdebug
2022-04-03 05:54:07 +07:00
# Local MySQL service in GitHub hosted environments is disabled by default.
# If you are using it instead of service containers, make sure you start it.
# - name: Start mysql service
# run: sudo systemctl start mysql.service
2021-12-15 18:19:10 +07:00
- name: Get composer cache directory
id: composer-cache
2022-10-12 17:56:11 +07:00
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2021-12-15 18:19:10 +07:00
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
2019-12-28 01:53:51 +07:00
# Use composer.json for key, if composer.lock is not committed.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
2021-12-15 18:19:10 +07:00
2019-10-08 19:42:54 +07:00
- name: Install Composer dependencies
2021-07-17 13:19:03 +07:00
run: composer install --no-progress --prefer-dist --optimize-autoloader
2021-12-15 18:19:10 +07:00
2019-10-08 19:42:54 +07:00
- name: Run Migration
run: |
2021-07-17 13:19:03 +07:00
composer require --dev symfony/orm-pack
2019-10-08 19:42:54 +07:00
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
2021-12-15 18:19:10 +07:00
2021-07-17 13:19:03 +07:00
- name: Install PHPUnit
run: simple-phpunit install
2021-12-15 18:19:10 +07:00
2021-07-17 13:19:03 +07:00
- name: Run tests
run: simple-phpunit --coverage-text